From 4e1cf4cd4a7bf70d08aa033f6c0b8aaf5a67c3f4 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Thu, 24 Apr 2025 19:44:19 +0100 Subject: [PATCH] build(*): Fix issue with installing playwright dependencies --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f50208..e6cd748 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,8 @@ jobs: - name: Install pnpm run: npm install -g pnpm - name: Install dependencies - run: pnpm exec playwright install && pnpm i + run: pnpm i + - name: Install Playwright browsers + run: pnpm exec playwright install - name: Run Playwright/BDD tests run: npm run bdd:full