Skip to content

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

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

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

Workflow file for this run

name: Build Test
on:
pull_request:
branches:
- main
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: npm
- name: npm-install
run: yarn
+ - name: app-build

Check failure on line 22 in .github/workflows/next.yml

View workflow run for this annotation

GitHub Actions / Build Test

Invalid workflow file

The workflow is not valid. .github/workflows/next.yml (Line: 22, Col: 1): Unexpected value '+ - name' .github/workflows/next.yml (Line: 23, Col: 1): Unexpected value '+ run'
+ run: yarn build