From 74401ee135e260f9d9890e99dcd72419b5e90a91 Mon Sep 17 00:00:00 2001 From: Edvin Eriksson Date: Mon, 8 Dec 2025 07:09:13 +0100 Subject: [PATCH 1/2] Update to support node LTS versions --- .github/workflows/ci.yaml | 10 +++++++--- package.json | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f93331a8..066c72a3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 19.x, 20.x, 21.x, 22.x, 23.x] + node-version: &node-versions + - 20.x # LTS + - 22.x # LTS + - 24.x # LTS + - 25.x # current steps: - uses: actions/checkout@v3 - uses: pnpm/action-setup@v2 @@ -51,7 +55,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 19.x, 20.x, 21.x] + node-version: *node-versions steps: - uses: actions/checkout@v3 - uses: pnpm/action-setup@v2 @@ -73,7 +77,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 19.x, 20.x, 21.x] + node-version: *node-versions steps: - uses: actions/checkout@v3 - uses: pnpm/action-setup@v2 diff --git a/package.json b/package.json index 9da2a884..b1b882b9 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ }, "packageManager": "pnpm@10.15.1", "engines": { - "node": ">=16 <=23" + "node": ">=20 <=24" }, "bugs": { "url": "https://github.com/captbaritone/grats/issues" From bacada7e0509df47e38ca3d4386a35d405acc8ee Mon Sep 17 00:00:00 2001 From: Edvin Eriksson Date: Tue, 9 Dec 2025 07:21:47 +0100 Subject: [PATCH 2/2] remove 25.x --- .github/workflows/ci.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 066c72a3..22bda4b6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,6 @@ jobs: - 20.x # LTS - 22.x # LTS - 24.x # LTS - - 25.x # current steps: - uses: actions/checkout@v3 - uses: pnpm/action-setup@v2