Skip to content

Commit

Permalink
Remove pnpm version from GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Sep 25, 2024
1 parent fcdfcbe commit 27b4da4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: "0" # necessary for `npm run print-version`
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 8
- uses: actions/setup-node@v4
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.17
node-version: 20
cache: 'pnpm'
- run: pnpm install
- run: pnpm test
Expand Down Expand Up @@ -103,4 +105,4 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info
flags: e2etests-local
fail_ci_if_error: true
fail_ci_if_error: true

0 comments on commit 27b4da4

Please sign in to comment.