Skip to content

Commit c668198

Browse files
authored
use npm ci instead of install to not alter package lock deps
1 parent cf8b870 commit c668198

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build_verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- name: Npm Install
1616
run: |
17-
npm install
17+
npm ci
1818
- name: eslint using npm run eslint
1919
run: |
2020
npm run lint

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- name: Npm Install
1616
run: |
17-
npm install
17+
npm ci
1818
- name: building package
1919
run: |
2020
npm run build

.github/workflows/update-wiki-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pwd
1717
ls -al
1818
cd srcRepo
19-
npm install
19+
npm ci
2020
npm run createJSDocs
2121
ls -al docs
2222
shell: bash

0 commit comments

Comments
 (0)