Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Commit 3425c85

Browse files
committed
ci: install dependencies correctly
1 parent 29429b9 commit 3425c85

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
node-version: 'lts/*'
1919
cache: 'npm'
2020

21-
- name: 'Install'
22-
run: 'npm install'
21+
- name: 'Install dependencies'
22+
run: 'npm clean-install'
2323

2424
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
2525
- run: 'npm run lint:editorconfig'

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
node-version: 'lts/*'
2222
cache: 'npm'
2323

24+
- name: 'Install dependencies'
25+
run: 'npm clean-install'
26+
2427
- name: 'Verify the integrity of provenance attestations and registry signatures for installed dependencies'
2528
run: 'npm audit signatures'
2629

27-
- name: 'Install'
28-
run: 'npm install'
29-
3030
- name: 'Release'
3131
run: 'npm run release'
3232
env:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
node-version: 'lts/*'
1919
cache: 'npm'
2020

21-
- name: 'Install'
22-
run: 'npm install'
21+
- name: 'Install dependencies'
22+
run: 'npm clean-install'
2323

2424
- name: 'Test'
2525
run: 'npm run test'

0 commit comments

Comments
 (0)