Skip to content

Commit 0abd8c4

Browse files
committed
chore: Use 'npm i' instead of 'npm ci' in publish action.
1 parent d593595 commit 0abd8c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/setup-node@v1
1717
with:
1818
node-version: 16
19-
- run: npm ci
19+
- run: npm i
2020
- run: npm test
2121

2222
publish-npm:
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
node-version: 16
3030
registry-url: https://registry.npmjs.org/
31-
- run: npm ci
31+
- run: npm i
3232
- run: npm publish
3333
env:
3434
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 commit comments

Comments
 (0)