Skip to content
This repository was archived by the owner on Jul 24, 2025. It is now read-only.

Commit 11f4f68

Browse files
committed
ci: use node 20
1 parent b829b03 commit 11f4f68

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/renovate.json5

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
ignoreDeps: [
77
"generouted", // testing lib shipping JSX (new version ship transpiled JS)
88
"prettier", // waiting for stable choice on ternaries
9-
"@types/node", // https://github.com/paulmillr/chokidar/issues/1299
109
],
1110
}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: 18
16+
node-version: 20
1717
- run: corepack enable
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 18
20+
node-version: 20
2121
cache: "pnpm"
2222
cache-dependency-path: "**/pnpm-lock.yaml"
2323
- run: pnpm install --frozen-lockfile --prefer-offline

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 18
20+
node-version: 20
2121
- run: corepack enable
2222
- uses: actions/setup-node@v4
2323
with:
24-
node-version: 18
24+
node-version: 20
2525
registry-url: "https://registry.npmjs.org"
2626
cache: "pnpm"
2727
cache-dependency-path: "**/pnpm-lock.yaml"

0 commit comments

Comments
 (0)