From c20ad9408e8ba937b460f114e8ff34f3220d9651 Mon Sep 17 00:00:00 2001 From: Jerric Lyns John Date: Thu, 3 Aug 2023 23:02:10 +0530 Subject: [PATCH] remove support for Node 14 from CI --- .github/workflows/ci.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f77fd6..a2d2cc5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - node-version: [14.x, 16.x, 18.x, 19.x] + node-version: [16.x, 18.x, 19.x] platform: - os: ubuntu-latest shell: bash diff --git a/package.json b/package.json index 32cd4b8..05bf3c3 100644 --- a/package.json +++ b/package.json @@ -89,6 +89,6 @@ "node-fetch": "^2.6.7" }, "engines": { - "node": ">=12" + "node": ">=16" } }