README: update demo link to final video #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |