Skip to content

Commit 8164953

Browse files
committed
ci(npm): npm install -> npm ci
1 parent 0e814ce commit 8164953

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/es-lint/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- name: Install deps
7-
run: npm install
7+
run: npm ci
88
shell: bash
99
- name: Run lint
1010
run: npm run test:lint

.github/actions/functional-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
shell: bash
1515
- name: Build Kuzzle
1616
run: |
17-
npm install
17+
npm ci
1818
npm run build
1919
shell: bash
2020
- name: Run functional tests

.github/actions/snippet-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ runs:
99
steps:
1010
- name: Build the Stack
1111
run: |
12-
npm install
12+
npm ci
1313
npm run build
1414
shell: bash
1515
- run: npm run doc-testing

.github/actions/unit-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
steps:
66
- name: Run build
77
run: |
8-
npm install
8+
npm ci
99
npm run build
1010
shell: bash
1111
- name: Run tests

0 commit comments

Comments
 (0)