Skip to content
Merged
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
12 changes: 10 additions & 2 deletions .github/workflows/daily-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,16 @@ jobs:
npm ci
npm run build

- name: Install Playwright browsers (for browser platform only)
run: npx playwright install --with-deps chromium
- name: Install Playwright system dependencies
run: npx playwright install-deps chromium
env:
DEBIAN_FRONTEND: noninteractive
NEEDRESTART_MODE: a
timeout-minutes: 5

- name: Install Playwright browsers
run: npx playwright install chromium
timeout-minutes: 5

- name: Run tests
continue-on-error: true
Expand Down
24 changes: 20 additions & 4 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,16 @@ jobs:
npm ci
npm run build

- name: Install Playwright browsers (for browser platform only)
run: npx playwright install --with-deps chromium
- name: Install Playwright system dependencies
run: npx playwright install-deps chromium
env:
DEBIAN_FRONTEND: noninteractive
NEEDRESTART_MODE: a
timeout-minutes: 5

- name: Install Playwright browsers
run: npx playwright install chromium
timeout-minutes: 5

- name: Run tests
id: run-tests
Expand Down Expand Up @@ -193,8 +201,16 @@ jobs:
npm ci
npm run build

- name: Install Playwright browsers (for browser platform only)
run: npx playwright install --with-deps chromium
- name: Install Playwright system dependencies
run: npx playwright install-deps chromium
env:
DEBIAN_FRONTEND: noninteractive
NEEDRESTART_MODE: a
timeout-minutes: 5

- name: Install Playwright browsers
run: npx playwright install chromium
timeout-minutes: 5

- name: Run tests
id: run-tests
Expand Down
Loading