Compare commits

...

3 Commits

Author SHA1 Message Date
Jonathan Netley 15498ddb9a
docs(corepack-version): reference node 24 as latest default (#723)
Co-authored-by: Steven <steven@ceriously.com>
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
2025-06-27 08:00:56 +00:00
Antoine du Hamel 9a1794a59f
chore: fix permissions in the `publish` workflow (#721) 2025-06-14 22:26:33 +02:00
Mike McCready 783a42fbe3
chore!: remove Node.js 18.x and 23.x usage, add 24.x (#718)
BREAKING CHANGE: drop Node.js 18.x and 23.x support

In CI add Node.js 24.x tests with Windows exclusion
2025-06-06 20:21:48 +02:00
4 changed files with 15 additions and 6 deletions

View File

@ -46,15 +46,21 @@ jobs:
fail-fast: false
matrix:
node:
- 18
- 20
- 22
- 23
- 24
platform:
- ubuntu-latest
- macos-latest
- windows-latest
# Temporarily skipping Node.js 24 under Windows due to issue
# https://github.com/nodejs/corepack/issues/715
# vitest fails "handle integrity checks" on Windows with Node.js 24.x
exclude:
- node: 24
platform: windows-latest
name: "${{matrix.platform}} w/ Node.js ${{matrix.node}}.x"
runs-on: ${{matrix.platform}}

View File

@ -8,12 +8,14 @@ env:
YARN_ENABLE_GLOBAL_CACHE: false
permissions:
contents: write
pull-requests: write
contents: read
jobs:
release-please:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
outputs:
release_created: ${{ steps.release.outputs.release_created }}
release_tag: ${{ steps.release.outputs.tag_name }}
@ -30,6 +32,7 @@ jobs:
if: ${{ needs.release-please.outputs.release_created }}
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4

View File

@ -11,7 +11,7 @@ and pnpm without having to install them**.
### Default Installs
Corepack is [distributed by default with all recent Node.js versions](https://nodejs.org/api/corepack.html).
Corepack is distributed with Node.js from version 14.19.0 up to (but not including) 25.0.0.
Run `corepack enable` to install the required Yarn and pnpm binaries on your path.
### Manual Installs

View File

@ -10,7 +10,7 @@
"url": "https://github.com/nodejs/corepack.git"
},
"engines": {
"node": "^18.17.1 || ^20.10.0 || >=22.11.0"
"node": "^20.10.0 || ^22.11.0 || >=24.0.0"
},
"exports": {
"./package.json": "./package.json"