From 472caf4edf42f268d73c3d58cbf9d586edf1bf78 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 8 Nov 2025 16:54:59 -0800 Subject: [PATCH] Install Playwright in CI --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1e5e03d2..5e294f93 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,6 +27,14 @@ jobs: run: | pip install -e '.[test]' pip freeze + - name: Cache Playwright browsers + uses: actions/cache@v4 + with: + path: ~/.cache/ms-playwright/ + key: ${{ runner.os }}-browsers + - name: Install Playwright dependencies + run: | + playwright install - name: Run tests run: | pytest -n auto -m "not serial"