Skip to content

Commit 808926a

Browse files
fix: replace npm install with npm ci in CI workflows (#175)
1 parent b452272 commit 808926a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: 'npm'
2525

2626
- name: Install Dependencies
27-
run: npm install
27+
run: npm ci
2828

2929
- name: Run tests
3030
run: |

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: 'npm'
2929

3030
- name: Install dependencies
31-
run: npm install
31+
run: npm ci
3232

3333
# the deploy action can't find the build directory if it's in the
3434
# sub directory of the monorepo, even if we reference it correctly

0 commit comments

Comments
 (0)