feat: mega-merge — Autonomize transition + tailored pipeline + quality infra #236
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
| # CI: lint, format, test, build, and validate on push/PR to main | |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate documentation | |
| run: npm run validate:docs | |
| - name: Lint | |
| run: npm run lint | |
| - name: Format check | |
| run: npm run format:check | |
| - name: Test | |
| run: npm test | |
| - name: Build | |
| run: npm run build | |
| - name: Validate data and resume quality | |
| run: npm run check:quick -- --ci | |
| - name: Validate build output | |
| run: | | |
| test -d .next || { echo "::error::.next/ directory not found"; exit 1; } | |
| test -f .next/BUILD_ID || { echo "::error::.next/BUILD_ID not found"; exit 1; } |