Skip to content

Commit e265236

Browse files
committed
chore: fix playwright installation
1 parent eb4d3e7 commit e265236

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@ jobs:
2828
- name: Install dependencies
2929
run: pnpm install
3030

31-
- name: Setup Playwright (Chromium)
32-
uses: microsoft/playwright-github-action@v1
33-
with:
34-
browsers: chromium
31+
- name: Install Playwright
32+
run: pnpm exec playwright install --with-deps chromium
3533

3634
- name: Lint
3735
run: pnpm run lint

tests/TESTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ We run Vitest in browser mode using Playwright (Chromium) with `vitest-browser-v
1919
## CI
2020

2121
- CI runs tests with coverage and uploads LCOV to Codecov (non-blocking).
22-
- Chromium is provisioned via the Playwright GitHub Action.
22+
- Chromium is installed via Playwright CLI with system deps: `pnpm exec playwright install --with-deps chromium`.
2323
- Optional: restrict Codecov uploads to PRs and `main` via a workflow condition.

0 commit comments

Comments
 (0)