Skip to content

README: update demo link to final video #3

README: update demo link to final video

README: update demo link to final video #3

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
# Lockfile pins macOS Rollup native binding; Linux runners need their
# own. Cheapest cross-platform fix is to regenerate it. Cost: no install
# caching speedup. Worth it for a side project CI.
# https://github.com/npm/cli/issues/4828
- run: rm -rf node_modules package-lock.json
- run: npm install --no-audit --no-fund
- run: npm run typecheck
- run: npm test
- run: npm run build