fix: widen hackathon radar table beyond the prose column #189
Workflow file for this run
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: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| # npm install (not ci): the macOS-generated lockfile omits some linux-only | |
| # optional deps (@emnapi wasm fallbacks), so strict `npm ci` fails on the | |
| # runner; install reconciles them cross-platform (matching Vercel's build). | |
| - run: npm install | |
| - run: npm run lint | |
| - run: npx tsc --noEmit | |
| - run: npm test | |
| - run: npm run build | |
| env: | |
| # Auto-provided token; repo cards degrade gracefully if reads are rate-limited. | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |