Skip to content

Commit

Permalink
ci: switch from npm to pnpm for dependency installation and script ex…
Browse files Browse the repository at this point in the history
…ecution
  • Loading branch information
teles committed Dec 14, 2024
1 parent a248793 commit cd8357d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm install
run: pnpm install

- name: Test
run: npm test:ci
run: pnpm run test:ci

- name: Run semantic-release
env:
Expand All @@ -38,7 +38,7 @@ jobs:

# Additional steps to build and publish the documentation
- name: Build documentation
run: npm run docs:build # Ensure this command correctly generates the static files
run: pnpm run docs:build # Ensure this command correctly generates the static files

- name: Checkout documentation repo
uses: actions/checkout@v3
Expand Down

0 comments on commit cd8357d

Please sign in to comment.