From 2dbfbcce47045de63f00713596c57d7022c88638 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Thu, 25 Jul 2024 11:24:47 +0200 Subject: [PATCH] Remove support for Node.js 12, 14 and 16 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c8a9f96..43d76da6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/setup-node@v4.0.3 with: - node-version: 14.x + node-version: 22.x cache: pnpm - run: pnpm install @@ -39,7 +39,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - node-version: [12.x, 14.x, 16.x, 18.x, 20.x] + node-version: [18.x, 20.x, 22.x] steps: - uses: actions/checkout@v4.1.7 @@ -88,7 +88,7 @@ jobs: - uses: actions/setup-node@v4.0.3 with: - node-version: 14.x + node-version: 22.x cache: pnpm - run: pnpm install diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0c1b1c8..647846bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4.1.7 - uses: actions/setup-node@v4.0.3 with: - node-version: 14.x + node-version: 22.x registry-url: 'https://registry.npmjs.org' - run: npm publish diff --git a/package.json b/package.json index 5bb5e20b..a86e854b 100644 --- a/package.json +++ b/package.json @@ -65,7 +65,7 @@ "webpack": "5.76.2" }, "engines": { - "node": "12.* || 14.* || >= 16.*" + "node": "18.* || 20.* || >= 22.*" }, "changelog": { "repo": "mainmatter/ember-test-selectors",