Merge pull request #121 from Inebrio/fix/catalog-upstream-timestamp #150
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, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| build-and-typecheck: | |
| name: Build & Typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Security audit | |
| run: npm audit --audit-level=high | |
| - name: Build shared (required by other packages) | |
| run: npm run build --workspace=packages/shared | |
| - name: Typecheck — service | |
| run: npm run typecheck --workspace=packages/service | |
| - name: Build service (required by cli) | |
| run: npm run build --workspace=packages/service | |
| - name: Typecheck — cli | |
| run: npm run typecheck --workspace=packages/cli | |
| - name: Typecheck — dashboard | |
| run: npm run typecheck --workspace=packages/dashboard | |
| - name: Build remaining packages | |
| run: npm run build --workspace=packages/cli --workspace=packages/dashboard |