Skip to content

Commit

Permalink
fix: use pnpm in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaquiery committed Oct 25, 2024
1 parent 6b350f0 commit fcdb4ba
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,18 @@ jobs:
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}

- name: Set up Node.js

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 'latest'
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install

- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit fcdb4ba

Please sign in to comment.