Skip to content

Commit

Permalink
ci: use pnpm commands
Browse files Browse the repository at this point in the history
  • Loading branch information
gamemaker1 committed Aug 3, 2023
1 parent 5f09c8a commit a0a638f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
version: latest
- name: Check for lint/formatting errors
run: |
npm ci
npm run lint
pnpm install
pnpm lint
test-library:
name: Test (Library)
strategy:
Expand All @@ -50,8 +50,8 @@ jobs:
version: latest
- name: Run library tests
run: |
npm ci
npm run test:lib
pnpm install
pnpm test:lib
test-external:
name: Test (External)
strategy:
Expand All @@ -73,9 +73,9 @@ jobs:
version: latest
- name: Run import and external store usage tests
run: |
npm ci
npm pack
npm run test:ext
pnpm install
pnpm pack
pnpm test:ext
publish:
name: Publish
needs: [lint, test-library, test-external]
Expand All @@ -94,7 +94,7 @@ jobs:
standalone: true
version: latest
- name: Install dependencies
run: pnpm ci
run: pnpm install
- name: Publish package to NPM
run: pnpm publish
env:
Expand Down

0 comments on commit a0a638f

Please sign in to comment.