reviews(7.2): review_passed turn 2 — per-route OG images landed #49
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-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js 24 | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - name: Install (root, all workspaces) | |
| run: npm ci | |
| - name: Typecheck workspaces | |
| run: npm run typecheck --workspaces --if-present | |
| - name: Build workspaces | |
| run: npm run build --workspaces --if-present | |
| - name: Test workspaces | |
| run: npm test --workspaces --if-present |