Skip to content

Add build workflow

Add build workflow #1

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
steps:

Check failure on line 9 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 9, Col: 5): Required property is missing: runs-on
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Install dependencies
run: |
npm ci
- name: Run build
run: |
npm run build