Skip to content

Commit ed19984

Browse files
committed
fix: use npm install instead of npm ci in GitHub Actions
npm ci requires package-lock.json which is in .gitignore
1 parent 0f6087d commit ed19984

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
node-version: 'lts/*'
2828

2929
- name: Install dependencies
30-
run: npm ci
30+
run: npm install
3131

3232
- name: Verify scripts
3333
run: |

0 commit comments

Comments
 (0)