From 1defb04fcaefbc39d7d3b8646e4830a186e9e2e3 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 31 Jan 2026 19:32:15 +0000 Subject: [PATCH] fix(e2e): streamline Playwright browser installation by caching and removing redundant force install step --- .github/workflows/e2e-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index aee6de01..89b70024 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -240,8 +240,6 @@ jobs: - 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 @@ -254,6 +252,8 @@ jobs: - name: Install & verify Playwright browsers run: | + npx playwright install --with-deps --force + set -euo pipefail echo "🎯 Playwright CLI version"