Skip to content

Commit 2c87a07

Browse files
authored
Add longer timeout for windows E2E CI runs (#13527)
1 parent ef2052c commit 2c87a07

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/integration-pr-windows-macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
os: "windows-latest"
3333
node_version: "[22]"
3434
browser: '["msedge"]'
35+
timeout: 60
3536

3637
integration-webkit:
3738
name: "👀 Integration Test"

.github/workflows/shared-integration.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ on:
1818
# but we want to pass an array (browser: "['chromium', 'firefox']"),
1919
# so we'll need to manually stringify it for now
2020
type: string
21+
timeout:
22+
required: false
23+
type: number
24+
default: 30
2125

2226
env:
2327
CI: true
@@ -62,4 +66,4 @@ jobs:
6266

6367
- name: 👀 Run Integration Tests ${{ matrix.browser }}
6468
run: "pnpm test:integration --project=${{ matrix.browser }}"
65-
timeout-minutes: 40
69+
timeout-minutes: ${{inputs.timeout}}

0 commit comments

Comments
 (0)