Skip to content

Commit 2d901ce

Browse files
committed
fix: use 'npm ci' instead of 'npm install' in pipelines
1 parent 8e93137 commit 2d901ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
cache: npm
4343

4444
- name: Install dependencies
45-
run: npm install
45+
run: npm ci
4646

4747
- name: Build
4848
env:

.github/workflows/pr-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
cache: npm
3535

3636
- name: Install dependencies
37-
run: npm install
37+
run: npm ci
3838

3939
- name: Build
4040
env:

0 commit comments

Comments
 (0)