Skip to content

Commit 765f765

Browse files
committed
remove e2e change
1 parent 3e4ad0d commit 765f765

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/playwright.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ on:
88
jobs:
99
test:
1010
timeout-minutes: 30
11-
strategy:
12-
fail-fast: false
13-
matrix:
14-
os: [ubuntu-latest, windows-latest]
15-
runs-on: ${{ matrix.os }}
11+
runs-on: ubuntu-latest
1612
steps:
1713
- name: Check out code
1814
uses: actions/checkout@v4
@@ -38,6 +34,6 @@ jobs:
3834
- uses: actions/upload-artifact@v4
3935
if: always()
4036
with:
41-
name: playwright-report-${{ matrix.os }}
37+
name: playwright-report
4238
path: ./**/playwright-report
4339
retention-days: 1

examples/common/config-e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function configurePlaywright(
2727
if (isCI) {
2828
// Do not build on CI - there is a preceding build step
2929
command = `pnpm preview:worker -- --port ${port} --inspector-port ${inspectorPort} ${env}`;
30-
timeout = 250_000;
30+
timeout = 100_000;
3131
} else {
3232
timeout = 500_000;
3333
command = `pnpm preview -- --port ${port} --inspector-port ${inspectorPort} ${env}`;

0 commit comments

Comments
 (0)