From: Jérôme Benoit Date: Mon, 13 Apr 2026 15:28:02 +0000 (+0200) Subject: fix: drop Node.js 20.x support (pnpm requires >= 22.13) X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=24e457378b0e6ca738c07c514c0b18290e3157d5;p=poolifier.git fix: drop Node.js 20.x support (pnpm requires >= 22.13) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6b15a9c9..58e7b034f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest, ubuntu-latest] - node: ['20.x', '22.x', '24.x', 'latest'] + node: ['22.x', '24.x', 'latest'] name: Node.js ${{ matrix.node }} on ${{ matrix.os }} diff --git a/README.md b/README.md index 805ec13ae..b6c2d34f6 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,7 @@ Remember that workers can only send and receive structured-cloneable data. ## Node.js versions -Node.js versions >= 20.x.x are supported. +Node.js versions >= 22.x.x are supported. ## [API](./docs/api.md) diff --git a/package.json b/package.json index 5fb713b7f..196113913 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "postpublish": "rm -rf ./package" }, "engines": { - "node": ">=20.11.0", + "node": ">=22.13.0", "pnpm": ">=9.0.0" }, "volta": {