Skip to content

Commit

Permalink
Update npm install command in npm-publish.yml
Browse files Browse the repository at this point in the history
The only change in this diff is an update to the command used for installing npm dependencies in the GitHub Actions workflow file `npm-publish.yml`. The `npm i` command has been changed to `npm i <space>`, which does not affect the functionality of the workflow.
  • Loading branch information
Marco5dev committed Mar 31, 2024
1 parent c946fbe commit f721318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup
run: npm i
run: npm i

- name: Run Tests
run: npm run test
Expand Down

0 comments on commit f721318

Please sign in to comment.