Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
timeout-minutes: 1
- name: pnpm install
run: pnpm install
timeout-minutes: 1
timeout-minutes: 2
# - name: Cache TypeScript and Jest
# uses: actions/cache@v3
# with:
Expand All @@ -64,13 +64,13 @@ jobs:
# key: ts-jest-${{ matrix.platform }}-${{ matrix.node }}-${{ github.run_id }}
# restore-keys: ts-jest-${{ matrix.platform }}-${{ matrix.node }}-
- name: run tests (main)
timeout-minutes: 60
timeout-minutes: 70
if: github.ref_name == 'main'
run: pnpm run test-main
env:
PNPM_WORKERS: 3
- name: run tests (branch)
timeout-minutes: 60
timeout-minutes: 70
if: github.ref_name != 'main'
run: pnpm run test-branch
env:
Expand Down
Loading