From dd3192f6d4ad1d2fcf7dbde10412561e9624c1e4 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Mon, 6 Jan 2025 14:44:57 +0100 Subject: [PATCH 1/4] CI: Add more Node.js versions --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c9de968..656b423c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: tests: strategy: matrix: - node-version: [12.x, 14.x] + node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 22.x] name: Tests (Node.js ${{ matrix.node-version }}) runs-on: ubuntu-latest From a9fbd51d9b9a9d1c3f781e036df3c83cf519882c Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Mon, 6 Jan 2025 14:45:18 +0100 Subject: [PATCH 2/4] CI: Run `lint` and `release` jobs on the latest Node.js version --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 656b423c..38803b72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: - node-version: 12.x + node-version: 22.x - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 with: @@ -67,7 +67,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: - node-version: 14.x + node-version: 22.x registry-url: 'https://registry.npmjs.org' - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 From 6e0bf29a839bb946d436633d0f11257c8ce1656b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:56:30 +0000 Subject: [PATCH 3/4] Update dependency pnpm to v9 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38803b72..433fa440 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ on: env: FORCE_COLOR: 1 # renovate: datasource=npm depName=pnpm - PNPM_VERSION: 6.35.1 + PNPM_VERSION: 9.15.3 jobs: lint: From 8ab701eef0901577c2ffc18cede77b62fd9997f4 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Mon, 6 Jan 2025 15:01:36 +0100 Subject: [PATCH 4/4] CI: Remove unsupported Node.js versions --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 433fa440..28246e48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: tests: strategy: matrix: - node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 22.x] + node-version: [20.x, 22.x] name: Tests (Node.js ${{ matrix.node-version }}) runs-on: ubuntu-latest