Relax perf test throughput requirements in CI to avoid flakes #941
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, pull_request] | |
| jobs: | |
| build: | |
| name: Build & test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x, v22.20.0, '*'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| check-latest: true | |
| cache: 'npm' | |
| cache-dependency-path: 'package.json' | |
| - run: npm install | |
| - run: npm run ci-tests | |
| env: | |
| # Node v22+ needs no strip-types (because we use ts-node for full TS instead) | |
| NODE_OPTIONS: >- | |
| ${{ (!startsWith(matrix.node-version, '20') && '--no-experimental-strip-types') || '' }} | |
| # We log performance test results to Posthog to track trends: | |
| POSTHOG_PERF_API_KEY: ${{ secrets.POSTHOG_PERF_API_KEY }} | |
| - name: Deploy docs | |
| if: github.ref == 'refs/heads/main' && matrix.node-version == 'v22.14.0' | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| single-commit: true | |
| branch: gh-pages | |
| folder: typedoc | |