Skip to content

Commit deaf845

Browse files
authored
ci: upload playwright reports (#303)
1 parent 5502ba2 commit deaf845

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

.github/workflows/playwright.yml

+7
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,10 @@ jobs:
3030

3131
- name: Run playwright dev tests
3232
run: pnpm e2e:dev
33+
34+
- uses: actions/upload-artifact@v4
35+
if: always()
36+
with:
37+
name: playwright-report
38+
path: ./**/playwright-report
39+
retention-days: 1

examples/api/e2e/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ export default defineConfig({
5050
command: "pnpm preview:worker",
5151
url: "http://localhost:8770",
5252
reuseExistingServer: !process.env.CI,
53-
timeout: 70_000,
53+
timeout: 100_000,
5454
},
5555
});

examples/create-next-app/e2e/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ export default defineConfig({
5050
command: "pnpm preview:worker",
5151
url: "http://localhost:8771",
5252
reuseExistingServer: !process.env.CI,
53-
timeout: 70_000,
53+
timeout: 100_000,
5454
},
5555
});

examples/e2e/app-pages-router/e2e/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ export default defineConfig({
4949
command: "pnpm preview",
5050
url: "http://localhost:8792",
5151
reuseExistingServer: !process.env.CI,
52-
timeout: 70_000,
52+
timeout: 100_000,
5353
},
5454
});

examples/e2e/app-router/e2e/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ export default defineConfig({
4949
command: "pnpm preview",
5050
url: "http://localhost:8790",
5151
reuseExistingServer: !process.env.CI,
52-
timeout: 70_000,
52+
timeout: 100_000,
5353
},
5454
});

examples/e2e/pages-router/e2e/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ export default defineConfig({
4949
command: "pnpm preview",
5050
url: "http://localhost:8791",
5151
reuseExistingServer: !process.env.CI,
52-
timeout: 70_000,
52+
timeout: 100_000,
5353
},
5454
});

examples/middleware/e2e/playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ export default defineConfig({
5050
command: "pnpm preview:worker",
5151
url: "http://localhost:8774",
5252
reuseExistingServer: !process.env.CI,
53-
timeout: 70_000,
53+
timeout: 100_000,
5454
},
5555
});

0 commit comments

Comments
 (0)