From 60b98f5e4a64a2033c90facb2b6f1493177a8e60 Mon Sep 17 00:00:00 2001 From: dhmlau Date: Mon, 14 Aug 2023 12:03:14 -0400 Subject: [PATCH] chore: drop Node.js 14 and lower Breaking change: drop Node.js 14 version and lower Signed-off-by: dhmlau --- .github/workflows/continuous-integration.yml | 12 ++++++------ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e4a400f..481179d 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,10 +19,10 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [10, 12, 14, 16] + node-version: [16, 18] include: - os: macos-latest - node-version: 14 # LTS + node-version: 16 # LTS fail-fast: false runs-on: ${{ matrix.os }} steps: @@ -45,10 +45,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16 - name: Bootstrap project run: | npm ci --ignore-scripts @@ -63,10 +63,10 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16 - name: Bootstrap project run: | npm ci --ignore-scripts diff --git a/package-lock.json b/package-lock.json index 5814e54..09f2bc3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,7 @@ "packages": { "": { "name": "strong-error-handler", - "version": "4.0.7", + "version": "4.0.8", "license": "MIT", "dependencies": { "accepts": "^1.3.8", @@ -28,7 +28,7 @@ "supertest": "^6.3.3" }, "engines": { - "node": ">=10" + "node": ">=16" } }, "node_modules/@aashutoshrathi/word-wrap": { diff --git a/package.json b/package.json index 80cdd5d..eda4e97 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "license": "MIT", "version": "4.0.8", "engines": { - "node": ">=10" + "node": ">=16" }, "repository": { "type": "git",