name: deploy on: push: branches: [main] workflow_dispatch: permissions: contents: read pages: write id-token: write concurrency: group: pages cancel-in-progress: true jobs: build-deploy: runs-on: ubuntu-latest environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 24 cache: npm - run: npm ci # `build` runs tsc --noEmit first, so this is the type check too. The # smoke test is not run here: it needs a WebGPU-capable headless Chrome, # which this runner cannot reliably provide. Run `npm run smoke` locally # before pushing. - run: npm run build # Pages must already be enabled with "GitHub Actions" as the source; the # workflow token cannot create the site itself. - uses: actions/configure-pages@v5 - uses: actions/upload-pages-artifact@v3 with: path: dist - id: deployment uses: actions/deploy-pages@v4