Skip to content

Commit

Permalink
ci: use correct version of pnpm + node 20
Browse files Browse the repository at this point in the history
turns out [this is optional](https://github.com/pnpm/action-setup/tree/master#version) if `packageManager` is set in `package.json` (which it is). I imagine the version mismatch was the cause of our woes
  • Loading branch information
Rexogamer committed Jun 26, 2024
1 parent 7a2e57d commit 2e19bb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ jobs:
uses: actions/checkout@v3
with:
submodules: recursive
- uses: pnpm/[email protected]
with:
version: 7
- uses: pnpm/[email protected]
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- uses: pnpm/[email protected]
with:
version: 7
- uses: pnpm/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 2e19bb2

Please sign in to comment.