Skip to content

Commit 308b9fb

Browse files
committed
Install Playwright browsers
1 parent 0c52170 commit 308b9fb

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/end2end.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,17 @@ jobs:
1818

1919
- name: Install the project
2020
run: uv sync --all-extras --dev --frozen
21+
22+
- name: Install Playwright browsers
23+
run: uv run playwright install
24+
25+
- name: Cache Playwright browsers
26+
uses: actions/cache@v4
27+
with:
28+
path: ~/.cache/ms-playwright
29+
key: ${{ runner.os }}-playwright-browsers-week-${{ env.CACHE_WEEK }}
30+
restore-keys: |
31+
${{ runner.os }}-playwright-browsers-week-
2132
2233
- name: Run tests
2334
run: uv run pytest tests -m "e2e"

0 commit comments

Comments
 (0)