Skip to content

Commit

Permalink
Upgraded github workflows to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandercerutti committed Oct 29, 2024
1 parent df2d264 commit 57f4aac
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ jobs:
WWDR: ${{ secrets.WWDR }}
SIGNER_KEY_PASSPHRASE: ${{ secrets.SIGNER_KEY_PASSPHRASE }}
steps:
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "14.x"
check-latest: true
- run: |
npm install
npm run build
npm run test
pnpm install
pnpm build
pnpm test

0 comments on commit 57f4aac

Please sign in to comment.