Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,19 @@ jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
container:
# https://mcr.microsoft.com/en-us/artifact/mar/playwright/tags
# https://playwright.dev/docs/ci#via-containers
image: mcr.microsoft.com/playwright:v1.50.1-noble

steps:
- name: Check out code
uses: actions/checkout@v4

- name: Install Dependencies
uses: ./.github/actions/install-dependencies

- name: Install Playwright
run: pnpm run install-playwright

- name: Build the tool
- name: Build the adapter
run: pnpm build

- name: Build all workers
Expand Down
2 changes: 1 addition & 1 deletion examples/common/config-e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function configurePlaywright(
if (isCI) {
// Do not build on CI - there is a preceding build step
command = `pnpm wrangler dev --port ${port} --inspector-port ${inspectorPort}`;
timeout = 100_000;
timeout = 500_000;
} else {
timeout = 500_000;
command = `pnpm preview --port ${port} --inspector-port ${inspectorPort}`;
Expand Down
Loading