From d5e062eeed4e1420d7f6e1f71b6d7e38a6a1a12a Mon Sep 17 00:00:00 2001 From: Daniel D Orlando Date: Wed, 29 Mar 2023 07:44:45 -0700 Subject: [PATCH] try using npm install instead of npm ci in github action --- .github/workflows/playwright.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 1fd1bd3925..88d6c083d8 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -16,8 +16,7 @@ jobs: node-version: 18 - name: Install dependencies run: | - npm config set registry=https://registry.npmjs.org/ - npm ci + npm install - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run Playwright tests