this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: upload playwright reports (#303)

authored by

Victor Berchet and committed by
GitHub
deaf845f 5502ba2a

+13 -6
+7
.github/workflows/playwright.yml
··· 30 30 31 31 - name: Run playwright dev tests 32 32 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
+1 -1
examples/api/e2e/playwright.config.ts
··· 50 50 command: "pnpm preview:worker", 51 51 url: "http://localhost:8770", 52 52 reuseExistingServer: !process.env.CI, 53 - timeout: 70_000, 53 + timeout: 100_000, 54 54 }, 55 55 });
+1 -1
examples/create-next-app/e2e/playwright.config.ts
··· 50 50 command: "pnpm preview:worker", 51 51 url: "http://localhost:8771", 52 52 reuseExistingServer: !process.env.CI, 53 - timeout: 70_000, 53 + timeout: 100_000, 54 54 }, 55 55 });
+1 -1
examples/e2e/app-pages-router/e2e/playwright.config.ts
··· 49 49 command: "pnpm preview", 50 50 url: "http://localhost:8792", 51 51 reuseExistingServer: !process.env.CI, 52 - timeout: 70_000, 52 + timeout: 100_000, 53 53 }, 54 54 });
+1 -1
examples/e2e/app-router/e2e/playwright.config.ts
··· 49 49 command: "pnpm preview", 50 50 url: "http://localhost:8790", 51 51 reuseExistingServer: !process.env.CI, 52 - timeout: 70_000, 52 + timeout: 100_000, 53 53 }, 54 54 });
+1 -1
examples/e2e/pages-router/e2e/playwright.config.ts
··· 49 49 command: "pnpm preview", 50 50 url: "http://localhost:8791", 51 51 reuseExistingServer: !process.env.CI, 52 - timeout: 70_000, 52 + timeout: 100_000, 53 53 }, 54 54 });
+1 -1
examples/middleware/e2e/playwright.config.ts
··· 50 50 command: "pnpm preview:worker", 51 51 url: "http://localhost:8774", 52 52 reuseExistingServer: !process.env.CI, 53 - timeout: 70_000, 53 + timeout: 100_000, 54 54 }, 55 55 });