Skip to content

Commit

Permalink
Update YAML
Browse files Browse the repository at this point in the history
update to use `npm i` instead of `npm ci`
  • Loading branch information
celanthe authored Aug 13, 2021
1 parent 393c72c commit dbc610d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- run: npm i
- run: npm test

publish-npm:
Expand All @@ -27,7 +27,7 @@ jobs:
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm i
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
Expand All @@ -44,7 +44,7 @@ jobs:
with:
node-version: 14
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm i
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit dbc610d

Please sign in to comment.