Skip to content

Commit a9fe718

Browse files
authored
fix(repo): Updating the timeout for nightly-checks job (#5500)
1 parent 9c68678 commit a9fe718

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/nightly-checks.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
integration-tests:
99
name: Integration Tests
1010
runs-on: ${{ vars.RUNNER_NORMAL || 'ubuntu-latest' }}
11-
timeout-minutes: ${{ vars.TIMEOUT_MINUTES_NORMAL && fromJSON(vars.TIMEOUT_MINUTES_NORMAL) || 30 }}
11+
timeout-minutes: ${{ vars.TIMEOUT_MINUTES_EXTENDED && fromJSON(vars.TIMEOUT_MINUTES_EXTENDED) || 30 }}
1212

1313
strategy:
1414
matrix:
@@ -25,7 +25,6 @@ jobs:
2525
id: config
2626
uses: ./.github/actions/init
2727
with:
28-
turbo-cache: 'local:'
2928
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }}
3029
turbo-team: ${{ vars.TURBO_TEAM }}
3130
turbo-token: ${{ secrets.TURBO_TOKEN }}
@@ -46,16 +45,16 @@ jobs:
4645
run: mkdir clerk-js && cd clerk-js && pnpm init && pnpm add @clerk/clerk-js
4746

4847
- name: Run Integration Tests
49-
run: pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only --force
48+
run: pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only
5049
env:
5150
E2E_APP_CLERK_JS_DIR: ${{runner.temp}}
5251
E2E_CLERK_VERSION: 'latest'
53-
INTEGRATION_INSTANCE_KEYS: ${{ secrets.INTEGRATION_INSTANCE_KEYS }}
54-
MAILSAC_API_KEY: ${{ secrets.MAILSAC_API_KEY }}
5552
E2E_NEXTJS_VERSION: 'canary'
56-
E2E_REACT_VERSION: '19.0.0-beta-04b058868c-20240508'
57-
E2E_REACT_DOM_VERSION: '19.0.0-beta-04b058868c-20240508'
5853
E2E_NPM_FORCE: 'true'
54+
E2E_REACT_DOM_VERSION: '19.1.0'
55+
E2E_REACT_VERSION: '19.1.0'
56+
INTEGRATION_INSTANCE_KEYS: ${{ secrets.INTEGRATION_INSTANCE_KEYS }}
57+
MAILSAC_API_KEY: ${{ secrets.MAILSAC_API_KEY }}
5958

6059
- name: Report Status
6160
if: always()

0 commit comments

Comments
 (0)