Skip to content

Commit

Permalink
feat: use pnpm instead of npm
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-rw committed Dec 21, 2023
1 parent e50c21c commit d5e1a0b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/dump-api-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm run api-dump-contributors
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install
- run: pnpm run api-dump-contributors

0 comments on commit d5e1a0b

Please sign in to comment.