Skip to content

Commit

Permalink
Fix npm build command
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith3895 committed Mar 24, 2024
1 parent 4529990 commit 084619e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
node-version: 18
- run: npm ci
- run: npm test
- run: npm build
- run: npm run build

publish-npm:
needs: build
Expand All @@ -29,7 +29,7 @@ jobs:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm build
- run: npm run build
- run: cd dist
- run: npm publish
env:
Expand Down

0 comments on commit 084619e

Please sign in to comment.