Skip to content

move the start script here #9

move the start script here

move the start script here #9

Workflow file for this run

name: check
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
# Set up
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20" # Oldest LTS at time of writing
- run: npm ci
# Run checks
- run: npm run format:check
- run: npm run lint:check
- run: npm run build