Skip to content

Commit 612a9ac

Browse files
committed
Fix pipelines
1 parent e147084 commit 612a9ac

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,8 @@ jobs:
88
default:
99
strategy:
1010
matrix:
11-
node:
12-
- 18
13-
- 20
11+
node: [18, 20]
1412
os:
15-
# - macOS-latest
16-
# - windows-latest # I don't have a Windows machine to debug
1713
- ubuntu-latest
1814
runs-on: ${{ matrix.os }}
1915
steps:

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,22 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [20]
14+
node: [20]
1515
steps:
1616
- name: Checkout Repo
1717
uses: actions/checkout@v4
1818
with:
1919
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2020
fetch-depth: 30
2121

22-
- name: Enable Corepack
23-
run: corepack enable
24-
2522
- name: Install pnpm
2623
uses: pnpm/action-setup@v4
2724

2825
- name: Setup Node.js
2926
uses: actions/setup-node@v4
3027
with:
31-
node-version: ${{ matrix.node-version }}
32-
cache: pnpm
28+
node-version: ${{ matrix.node }}
29+
cache: 'pnpm'
3330

3431
- name: Install Dependencies
3532
run: pnpm install

0 commit comments

Comments
 (0)