Skip to content

Commit

Permalink
Update CI workflow: s/'npm'/'pnpm'/
Browse files Browse the repository at this point in the history
  • Loading branch information
JackNoordhuis committed Dec 11, 2024
1 parent c55840e commit 2fd6562
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
cache-dependency-path: 'package.json'

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

- name: Build alpine-typescript
run: npm run build-dist
run: pnpm run build-dist

- uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -91,10 +91,10 @@ jobs:
cache-dependency-path: 'package.json'

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

- name: Build package example
run: npm run build-dist
run: pnpm run build-dist

test-example-project:
name: Run example project tests
Expand Down Expand Up @@ -137,10 +137,10 @@ jobs:
cache: pnpm

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

- name: Build package example
run: npm run build-dist
run: pnpm run build-dist

stage:
name: Stage changes as pull request
Expand Down

0 comments on commit 2fd6562

Please sign in to comment.