Skip to content

Commit

Permalink
Update CI workflow to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
williamgrosset committed Feb 6, 2024
1 parent b0e14d8 commit 5f748fe
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install pnpm
run: npm install -g pnpm
- name: Install modules
run: yarn
run: pnpm install
- name: Create build
run: yarn build
run: pnpm build
- name: Run tests
run: yarn test
run: pnpm test

0 comments on commit 5f748fe

Please sign in to comment.