Skip to content

Commit

Permalink
fix: missing "ci" in npm call
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp-winterle committed Jun 17, 2024
1 parent ccad385 commit e5e1d7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm
- run: npm ci
- run: npm run build
- run: npm test
4 changes: 2 additions & 2 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@v4
with:
node-version: 20
- run: npm
- run: npm ci
- run: npm test

publish-npm:
Expand All @@ -27,7 +27,7 @@ jobs:
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit e5e1d7d

Please sign in to comment.