Skip to content

Commit

Permalink
ci(npm): npm install -> npm ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauNeko committed Nov 15, 2023
1 parent 0e814ce commit 8164953
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/es-lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ runs:
using: "composite"
steps:
- name: Install deps
run: npm install
run: npm ci
shell: bash
- name: Run lint
run: npm run test:lint
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/functional-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
shell: bash
- name: Build Kuzzle
run: |
npm install
npm ci
npm run build
shell: bash
- name: Run functional tests
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/snippet-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
steps:
- name: Build the Stack
run: |
npm install
npm ci
npm run build
shell: bash
- run: npm run doc-testing
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/unit-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
steps:
- name: Run build
run: |
npm install
npm ci
npm run build
shell: bash
- name: Run tests
Expand Down

0 comments on commit 8164953

Please sign in to comment.