From 200cdac3f4fc2ea6af2cdc82c9a64c0064c078d7 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 31 Jan 2026 19:18:43 +0000 Subject: [PATCH] fix(e2e): reorder Playwright browser installation step to ensure proper caching --- .github/workflows/e2e-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 86a42104..aee6de01 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -237,12 +237,12 @@ jobs: - name: Install dependencies run: npm ci - - name: Force Playwright browser install - run: npx playwright install --with-deps --force - - name: Clean Playwright browser cache run: rm -rf ~/.cache/ms-playwright + - name: Force Playwright browser install + run: npx playwright install --with-deps --force + - name: Cache Playwright browsers id: playwright-cache uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5