From 28c2f2db7df18632896c682d42a8974bb597e6fa Mon Sep 17 00:00:00 2001 From: Marc Emmanuel Date: Fri, 23 Jan 2026 14:35:26 +0100 Subject: [PATCH] fix: update Playwright browser installation command to use npx --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index a78b3a7a..b41b4ac2 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -14,7 +14,7 @@ jobs: - name: Install dependencies run: npm ci - name: Install Playwright Browsers - run: playwright install --with-deps + run: npx playwright install --with-deps - name: Run Playwright tests run: npm run test:e2e - uses: actions/upload-artifact@v4