Skip to content

fix: widen hackathon radar table beyond the prose column #189

fix: widen hackathon radar table beyond the prose column

fix: widen hackathon radar table beyond the prose column #189

Workflow file for this run

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 }}