Skip to content

Commit 5c109f9

Browse files
committed
fix: use npm install instead of npm ci in CI workflow
1 parent c0a73e5 commit 5c109f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/setup-node@v4
4444
with:
4545
node-version: "20"
46-
- run: npm ci
46+
- run: npm install
4747
- name: Install Playwright
4848
run: npx playwright install --with-deps chromium
4949
- name: Start server
@@ -66,7 +66,7 @@ jobs:
6666
- uses: actions/setup-node@v4
6767
with:
6868
node-version: "20"
69-
- run: npm ci
69+
- run: npm install
7070
- name: Start server
7171
run: npx http-server . -p 8080 -s &
7272
- name: Wait for server

0 commit comments

Comments
 (0)