diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index d83daec8..487f826e 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -30,3 +30,10 @@ jobs: - name: Run playwright dev tests run: pnpm e2e:dev + + - uses: actions/upload-artifact@v4 + if: always() + with: + name: playwright-report + path: ./**/playwright-report + retention-days: 1 diff --git a/examples/api/e2e/playwright.config.ts b/examples/api/e2e/playwright.config.ts index 0f5f526d..9aa296a2 100644 --- a/examples/api/e2e/playwright.config.ts +++ b/examples/api/e2e/playwright.config.ts @@ -50,6 +50,6 @@ export default defineConfig({ command: "pnpm preview:worker", url: "http://localhost:8770", reuseExistingServer: !process.env.CI, - timeout: 70_000, + timeout: 100_000, }, }); diff --git a/examples/create-next-app/e2e/playwright.config.ts b/examples/create-next-app/e2e/playwright.config.ts index 083a501c..1a3f803a 100644 --- a/examples/create-next-app/e2e/playwright.config.ts +++ b/examples/create-next-app/e2e/playwright.config.ts @@ -50,6 +50,6 @@ export default defineConfig({ command: "pnpm preview:worker", url: "http://localhost:8771", reuseExistingServer: !process.env.CI, - timeout: 70_000, + timeout: 100_000, }, }); diff --git a/examples/e2e/app-pages-router/e2e/playwright.config.ts b/examples/e2e/app-pages-router/e2e/playwright.config.ts index 47fa6c2b..f131de7d 100644 --- a/examples/e2e/app-pages-router/e2e/playwright.config.ts +++ b/examples/e2e/app-pages-router/e2e/playwright.config.ts @@ -49,6 +49,6 @@ export default defineConfig({ command: "pnpm preview", url: "http://localhost:8792", reuseExistingServer: !process.env.CI, - timeout: 70_000, + timeout: 100_000, }, }); diff --git a/examples/e2e/app-router/e2e/playwright.config.ts b/examples/e2e/app-router/e2e/playwright.config.ts index f6c067bb..ad1db165 100644 --- a/examples/e2e/app-router/e2e/playwright.config.ts +++ b/examples/e2e/app-router/e2e/playwright.config.ts @@ -49,6 +49,6 @@ export default defineConfig({ command: "pnpm preview", url: "http://localhost:8790", reuseExistingServer: !process.env.CI, - timeout: 70_000, + timeout: 100_000, }, }); diff --git a/examples/e2e/pages-router/e2e/playwright.config.ts b/examples/e2e/pages-router/e2e/playwright.config.ts index 602e4861..791f8126 100644 --- a/examples/e2e/pages-router/e2e/playwright.config.ts +++ b/examples/e2e/pages-router/e2e/playwright.config.ts @@ -49,6 +49,6 @@ export default defineConfig({ command: "pnpm preview", url: "http://localhost:8791", reuseExistingServer: !process.env.CI, - timeout: 70_000, + timeout: 100_000, }, }); diff --git a/examples/middleware/e2e/playwright.config.ts b/examples/middleware/e2e/playwright.config.ts index 66c22aa5..dc17bfc4 100644 --- a/examples/middleware/e2e/playwright.config.ts +++ b/examples/middleware/e2e/playwright.config.ts @@ -50,6 +50,6 @@ export default defineConfig({ command: "pnpm preview:worker", url: "http://localhost:8774", reuseExistingServer: !process.env.CI, - timeout: 70_000, + timeout: 100_000, }, });