From dc68be263e041de0fb44bf08ef79e72417167cd6 Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Wed, 31 May 2023 14:40:04 -0400 Subject: [PATCH] ci: stop testing against NodeJS v14, v16 (#331) * build(package): set minimal node version in engines field to v18 BREAKING CHANGE: Drop support for NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 --------- Co-authored-by: Keegan Campbell --- .github/workflows/test.yml | 3 +-- package.json | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f1379bc..6423f2a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,9 +13,8 @@ jobs: strategy: matrix: node_version: - - 14 - - 16 - 18 + - 20 steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node_version }} diff --git a/package.json b/package.json index f7754a2..db54f65 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ [ "@pika/plugin-build-node", { - "minNodeVersion": "14" + "minNodeVersion": 18 } ], [ @@ -91,6 +91,6 @@ ] }, "engines": { - "node": ">= 14" + "node": ">= 18" } }