Skip to content

Commit

Permalink
GitHub actions updated to use npm i
Browse files Browse the repository at this point in the history
  • Loading branch information
NuwanJ-RhinoPartners committed Sep 8, 2023
1 parent df3da91 commit 57f7a6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
CI: true

- name: Install dependencies
run: npm ci
run: npm i

- name: Build
run: npm run build --if-present
Expand All @@ -47,7 +47,7 @@ jobs:
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm i
- run: npm run build --if-present
- run: npm publish --access public
env:
Expand All @@ -63,7 +63,7 @@ jobs:
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm i
- run: npm run build --if-present
- run: npm publish --access public
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci
run: npm i

- name: Build
run: npm run build --if-present
Expand Down

0 comments on commit 57f7a6d

Please sign in to comment.