Fix groupConcurrency fetch plan regression #4
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
| on: | |
| push: | |
| branches: [master] | |
| tags-ignore: ['**'] | |
| paths: | |
| - 'packages/dashboard/**' | |
| - 'src/**' | |
| - '.github/workflows/dashboard.yml' | |
| pull_request: | |
| branches: [master] | |
| paths: | |
| - 'packages/dashboard/**' | |
| - 'src/**' | |
| - '.github/workflows/dashboard.yml' | |
| name: Dashboard CI | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| container: node:24 | |
| services: | |
| postgres: | |
| image: postgres | |
| env: | |
| POSTGRES_PASSWORD: postgres | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| cache-dependency-path: | | |
| package-lock.json | |
| packages/dashboard/package-lock.json | |
| - name: Install root dependencies | |
| run: npm ci | |
| - name: Install dashboard dependencies | |
| run: npm ci | |
| working-directory: packages/dashboard | |
| - name: Typecheck | |
| run: npm run typecheck | |
| working-directory: packages/dashboard | |
| - name: Frontend tests with coverage | |
| run: npm run cover:frontend | |
| working-directory: packages/dashboard | |
| - name: Server tests with coverage | |
| run: npm run cover:server | |
| working-directory: packages/dashboard | |
| env: | |
| DATABASE_URL: postgres://postgres:postgres@postgres:5432/postgres |