From f5e120c330489be5a20db053964194b9a28cf0f6 Mon Sep 17 00:00:00 2001 From: Daniel D Orlando Date: Tue, 28 Mar 2023 10:18:17 -0700 Subject: [PATCH] try explicitly setting registry before npm ci step --- .github/workflows/playwright.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 29c87ca950..1fd1bd3925 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -15,7 +15,9 @@ jobs: with: node-version: 18 - name: Install dependencies - run: npm ci + run: | + npm config set registry=https://registry.npmjs.org/ + npm ci - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run Playwright tests