Skip to content

Commit 869de45

Browse files
authored
fix: Updates dependency install step, adding npm install prior to ci command. This syncs package and package-lock. (#69)
1 parent 8605f49 commit 869de45

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/e2e.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ jobs:
5252
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-e2e
5353
restore-keys: |
5454
${{ runner.os }}-node-e2e
55-
- run: npm ci
55+
- run: |
56+
npm install
57+
npm ci --quiet --no-fund --no-audit # Comment out flags to see logs.
5658
env:
5759
# https://playwright.dev/docs/installation/#skip-browser-downloads
5860
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1

0 commit comments

Comments
 (0)