From a9da0a1c8fb84a6622b375efbfc5293e0616ba9e Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Wed, 3 May 2023 09:36:21 -0400 Subject: [PATCH] feat!: remove node 12 and node 14 Node 12 has been EOL since the end of April 2022 and Node 14 just became EOL at the end of April 2023 Signed-off-by: Lucas Holmquist --- .github/workflows/nodejs-ci-action.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs-ci-action.yml b/.github/workflows/nodejs-ci-action.yml index 57b91bc5..0eb50f75 100644 --- a/.github/workflows/nodejs-ci-action.yml +++ b/.github/workflows/nodejs-ci-action.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 16.x, 18.x] + node-version: [16.x, 18.x] steps: - uses: actions/checkout@v2 diff --git a/package.json b/package.json index 6fa6ef95..50db3b23 100644 --- a/package.json +++ b/package.json @@ -158,6 +158,6 @@ }, "types": "./dist/index.d.ts", "engines": { - "node": ">=12 <=20.0.0" + "node": ">=16 <=20.0.0" } }