Skip to content

Commit

Permalink
NEXT-33446 - use pnpm instead of pnpm in CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Feb 6, 2024
1 parent 5bf3ebb commit ebb42c2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ jobs:
with:
node-version: '20'

- uses: pnpm/action-setup@v2
with:
version: 8

# - name: Retrieve the cached "node_modules" directory (if present)
# uses: actions/cache@v3
# id: node-cache
Expand All @@ -63,7 +67,7 @@ jobs:

- name: Install dependencies (if the cached directory was not found)
# if: steps.node-cache.outputs.cache-hit != 'true'
run: npm ci
run: pnpm install

- name: unit
run: npm run test:unit
Expand All @@ -79,6 +83,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4

- uses: pnpm/action-setup@v2
with:
version: 8

# - name: Retrieve the cached "node_modules" directory (if present)
# uses: actions/cache@v3
# id: node-cache
Expand All @@ -88,7 +96,7 @@ jobs:

- name: Install dependencies (if the cached directory was not found)
# if: steps.node-cache.outputs.cache-hit != 'true'
run: npm ci
run: pnpm install

- name: Install Playwright
run: npx playwright install
Expand Down

0 comments on commit ebb42c2

Please sign in to comment.