From fee1661740964d0203f109bfcd476d8a45f286b6 Mon Sep 17 00:00:00 2001 From: Kaho Cheung Date: Thu, 20 Aug 2026 21:35:55 +1000 Subject: [PATCH 1/2] Bump CI Node version from 10 to 20 Node 10 is long EOL; 20 is the current LTS. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2d99040..156c6bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,10 +8,10 @@ jobs: - name: Begin CI... uses: actions/checkout@v4 - - name: Use Node 10 + - name: Use Node 20 uses: actions/setup-node@v4 with: - node-version: 10.x + node-version: 20.x - name: Use cached node_modules uses: actions/cache@v4 From bdc8f0f8f516432c68f4466e10d03995cc1647a7 Mon Sep 17 00:00:00 2001 From: Kaho Cheung Date: Thu, 20 Aug 2026 21:39:38 +1000 Subject: [PATCH 2/2] Bump engines.node to >=20 to match CI Keeps the published package's supported-Node claim in sync with what CI actually tests against. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fc4f891..6220cf3 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "src" ], "engines": { - "node": ">=10" + "node": ">=20" }, "scripts": { "start": "tsdx watch",