Skip to content

Commit

Permalink
use pnpm, bump node version
Browse files Browse the repository at this point in the history
  • Loading branch information
MaHaWo committed Aug 22, 2024
1 parent b4ddeb7 commit e3517ca
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up environment
uses: actions/setup-node@v4
with:
node-version: '20'
- uses: pnpm/action-setup@v4
with:
version: 9

- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'

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

- name: Run tests
run: npx vitest
run: pnpm run test

0 comments on commit e3517ca

Please sign in to comment.