Skip to content

Commit

Permalink
build: Switch from 'npm ci' to 'npm install'.
Browse files Browse the repository at this point in the history
The 'npm install' command is now used instead of 'npm ci' to install dependencies. This change ensures compatibility with the current project setup and resolves issues encountered during the installation process in the build pipeline.
  • Loading branch information
rustyy committed Aug 17, 2024
1 parent e7aab33 commit 3a3d16a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/preparePublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
git config user.email "<>"
git config pull.rebase true
- name: Install dependencies
run: npm ci
run: npm install
- name: Bump version
run: |
npx changeset version
Expand Down

0 comments on commit 3a3d16a

Please sign in to comment.