Skip to content

Commit 7385764

Browse files
authored
Merge pull request #2760 from bcgov/package-refresh-investigation
ci: updated npm i to npm ci
2 parents 43afc4a + e4b3efa commit 7385764

File tree

3 files changed

+195
-195
lines changed

3 files changed

+195
-195
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ jobs:
5656
- uses: actions/setup-node@master
5757
with:
5858
node-version: ${{ matrix.node }}
59-
- run: npm install
59+
- run: npm ci
6060
- run: npm run build
6161
- run: npm run test

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-node@master
2020
with:
2121
node-version: ${{ matrix.node }}
22-
- run: npm install
22+
- run: npm ci
2323
- run: npm run build
2424
- run: npm run test:cov
2525
- if: matrix.node == '24'
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/setup-node@master
4545
with:
4646
node-version: ${{ matrix.node }}
47-
- run: npm install
47+
- run: npm ci
4848
- run: npm run build
4949
- run: npm run test:cov
5050
- if: matrix.node == '24'
@@ -69,7 +69,7 @@ jobs:
6969
- uses: actions/setup-node@master
7070
with:
7171
node-version: ${{ matrix.node }}
72-
- run: npm install
72+
- run: npm ci
7373
- run: npm run build
7474
- run: npm run test:cov
7575
- if: matrix.node == '24'

0 commit comments

Comments
 (0)