OUT-4146: set maxDuration on / page render to stop 15s SSR timeout #190
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 | |
| jobs: | |
| typecheck: | |
| name: Typecheck tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.14.0 | |
| cache: yarn | |
| cache-dependency-path: './yarn.lock' | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Typecheck test files | |
| run: yarn typecheck:test | |
| run-tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.14.0 | |
| cache: yarn | |
| cache-dependency-path: './yarn.lock' | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Run tests | |
| run: yarn test |