Skip to content

Add github action for building on main/PRs #1

Add github action for building on main/PRs

Add github action for building on main/PRs #1

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run build