Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,20 @@ jobs:
node:
- 18
- 20
- 21
- 22
- 23
platform:
- ubuntu-latest
- macos-latest
- windows-latest

# Temporarily skipping Node.js 23 under Windows due to issue
# https://github.com/nodejs/corepack/issues/597
# ci vitest fails "handle integrity checks" on Windows Node.js 23
exclude:
- node: 23
platform: windows-latest

name: "${{matrix.platform}} w/ Node.js ${{matrix.node}}.x"
runs-on: ${{matrix.platform}}

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/nodejs/corepack.git"
},
"engines": {
"node": "^18.17.1 || >=20.10.0"
"node": "^18.17.1 || ^20.10.0 || >=22.11.0"
},
"exports": {
"./package.json": "./package.json"
Expand All @@ -26,7 +26,7 @@
"@yarnpkg/eslint-config": "^2.0.0",
"@yarnpkg/fslib": "^3.0.0-rc.48",
"@zkochan/cmd-shim": "^6.0.0",
"better-sqlite3": "^10.0.0",
"better-sqlite3": "^11.7.2",
"clipanion": "patch:clipanion@npm%3A3.2.1#~/.yarn/patches/clipanion-npm-3.2.1-fc9187f56c.patch",
"debug": "^4.1.1",
"esbuild": "^0.21.0",
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -991,14 +991,14 @@ __metadata:
languageName: node
linkType: hard

"better-sqlite3@npm:^10.0.0":
version: 10.1.0
resolution: "better-sqlite3@npm:10.1.0"
"better-sqlite3@npm:^11.7.2":
version: 11.7.2
resolution: "better-sqlite3@npm:11.7.2"
dependencies:
bindings: "npm:^1.5.0"
node-gyp: "npm:latest"
prebuild-install: "npm:^7.1.1"
checksum: 10c0/3c858214b8b6f0c3f536759a863dfc79b11c52cecd6061525fb7707d950ea2ef369280276d8cc62d504119514b7d32ea4aab134d260f6b5a0419a8119d613a67
checksum: 10c0/bcc7606dc597738679c073bd7333d44f5abca02b6f87ab1aaf99cf5c3f9d0f29dff39f3cc59de97ff9683fcaeadc8229441396f9d6cca68aa3619672270083c8
languageName: node
linkType: hard

Expand Down Expand Up @@ -1229,7 +1229,7 @@ __metadata:
"@yarnpkg/eslint-config": "npm:^2.0.0"
"@yarnpkg/fslib": "npm:^3.0.0-rc.48"
"@zkochan/cmd-shim": "npm:^6.0.0"
better-sqlite3: "npm:^10.0.0"
better-sqlite3: "npm:^11.7.2"
clipanion: "patch:clipanion@npm%3A3.2.1#~/.yarn/patches/clipanion-npm-3.2.1-fc9187f56c.patch"
debug: "npm:^4.1.1"
esbuild: "npm:^0.21.0"
Expand Down
Loading