Add Deliverable E professional validation gate #35
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: Baseline verification | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.13.0 | |
| cache: npm | |
| cache-dependency-path: | | |
| backend/package-lock.json | |
| frontend/package-lock.json | |
| website/package-lock.json | |
| - name: Install backend dependencies | |
| run: npm ci --prefix backend | |
| - name: Install frontend dependencies | |
| run: npm ci --prefix frontend | |
| - name: Install website dependencies | |
| run: npm ci --prefix website | |
| - name: Verify inherited product baseline | |
| run: npm run check |