Skip to content

Setup next.js, nest.js, and Github Actions #6

Setup next.js, nest.js, and Github Actions

Setup next.js, nest.js, and Github Actions #6

Workflow file for this run

name: Build Test
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-node
uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: npm-install
run: yarn
- name: app-build
run: yarn build