Skip to content

Commit

Permalink
ci: switch to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlewis92 committed Oct 2, 2024
1 parent 2f293a2 commit a802114
Show file tree
Hide file tree
Showing 4 changed files with 4,662 additions and 4,784 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14
cache: 'npm'
- run: npm ci
- run: npm run test:ci
- uses: codecov/codecov-action@v3
node-version: 22
cache: 'pnpm'
- run: corepack enable
- run: pnpm install
- run: pnpm test:ci
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Loading

0 comments on commit a802114

Please sign in to comment.