From 1cc9fea3f838f815c2e24262cdc092360513c1b5 Mon Sep 17 00:00:00 2001 From: BrickheadJohnny Date: Wed, 24 Jul 2024 08:55:46 +0200 Subject: [PATCH] fix: install `@playwright/test` globally --- .github/workflows/playwright.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 24100437ca..9b2a010743 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -11,8 +11,8 @@ jobs: - uses: actions/setup-node@v4 with: node-version: lts/* - - name: Install dependencies - run: npm ci + - name: Install Playwright + run: npm install -g @playwright/test - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run Playwright tests