From d041147e975d0fbf7370df1a26441fa6af7d3e97 Mon Sep 17 00:00:00 2001 From: nimesh0505 Date: Fri, 6 Sep 2024 13:12:34 +0530 Subject: [PATCH 1/3] Update Node.js version to 20+ and adjust CI configuration --- .github/workflows/ci.yml | 2 +- package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a314b4..c425d62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,4 +21,4 @@ jobs: with: license-check: true lint: true - node-versions: '["16", "18", "20", "22"]' + node-versions: '["20", "22"]' diff --git a/package.json b/package.json index 898d4f1..fe97125 100644 --- a/package.json +++ b/package.json @@ -45,5 +45,8 @@ "proxyquire": "^2.1.3", "standard": "^17.1.0", "tap": "^18.7.2" + }, + "engines": { + "node": ">=20" } } From 13c7c5296c3ecc2851852d7140488804a4668824 Mon Sep 17 00:00:00 2001 From: nimesh0505 Date: Fri, 6 Sep 2024 14:00:03 +0530 Subject: [PATCH 2/3] updated CI configuration to support node 18 --- .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 c425d62..856aae4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,4 +21,4 @@ jobs: with: license-check: true lint: true - node-versions: '["20", "22"]' + node-versions: '["18","20", "22"]' From 692201b5c5e072f6cfab437cbaa0860fee2a64ca Mon Sep 17 00:00:00 2001 From: nimesh0505 Date: Fri, 6 Sep 2024 15:11:07 +0530 Subject: [PATCH 3/3] removed node-versions and engines specifications --- .github/workflows/ci.yml | 1 - package.json | 3 --- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 856aae4..f916409 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,4 +21,3 @@ jobs: with: license-check: true lint: true - node-versions: '["18","20", "22"]' diff --git a/package.json b/package.json index fe97125..898d4f1 100644 --- a/package.json +++ b/package.json @@ -45,8 +45,5 @@ "proxyquire": "^2.1.3", "standard": "^17.1.0", "tap": "^18.7.2" - }, - "engines": { - "node": ">=20" } }