Skip to content

Commit

Permalink
Use npm install in all workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
AmsterGet committed Jan 19, 2024
1 parent 1367aa8 commit 2965988
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
- name: Clean install of node dependencies
run: npm ci
- name: Install of node dependencies
run: npm install
- name: Build the source code
run: npm run build
- name: Run lint
Expand All @@ -47,8 +47,8 @@ jobs:
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Clean install of node dependencies
run: npm ci
- name: Install of node dependencies
run: npm install
- name: Build the source code
run: npm run build
- name: Publish to NPM
Expand Down

0 comments on commit 2965988

Please sign in to comment.