try explicitly setting registry before npm ci step

This commit is contained in:
Daniel D Orlando 2023-03-28 10:18:17 -07:00 committed by Daniel D Orlando
parent afaa0253b8
commit f5e120c330

View file

@ -15,7 +15,9 @@ jobs:
with: with:
node-version: 18 node-version: 18
- name: Install dependencies - name: Install dependencies
run: npm ci run: |
npm config set registry=https://registry.npmjs.org/
npm ci
- name: Install Playwright Browsers - name: Install Playwright Browsers
run: npx playwright install --with-deps run: npx playwright install --with-deps
- name: Run Playwright tests - name: Run Playwright tests