Add April 2026 programming (metcons and sessions) #53
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: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build & Validate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: website/package-lock.json | |
| - name: Install dependencies | |
| working-directory: website | |
| run: npm ci | |
| - name: TypeScript check | |
| working-directory: website | |
| run: npx tsc --noEmit | |
| - name: Lint | |
| working-directory: website | |
| run: npm run lint | |
| - name: Build | |
| working-directory: website | |
| run: npm run build | |
| validate-data: | |
| name: Validate JSON Data | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Validate JSON files | |
| run: node scripts/validate-data.mjs | |
| - name: Audit metcon scaling | |
| run: node scripts/audit-metcons.mjs | |
| - name: Audit session integrity | |
| run: node scripts/audit-sessions.mjs |