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

Commit

Permalink
ci: install dependencies correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Jul 2, 2023
1 parent 29429b9 commit 3425c85
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
node-version: 'lts/*'
cache: 'npm'

- name: 'Install'
run: 'npm install'
- name: 'Install dependencies'
run: 'npm clean-install'

- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
- run: 'npm run lint:editorconfig'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
node-version: 'lts/*'
cache: 'npm'

- name: 'Install dependencies'
run: 'npm clean-install'

- name: 'Verify the integrity of provenance attestations and registry signatures for installed dependencies'
run: 'npm audit signatures'

- name: 'Install'
run: 'npm install'

- name: 'Release'
run: 'npm run release'
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
node-version: 'lts/*'
cache: 'npm'

- name: 'Install'
run: 'npm install'
- name: 'Install dependencies'
run: 'npm clean-install'

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

0 comments on commit 3425c85

Please sign in to comment.