From 05425bbada4e97b234295ddf6210c9a7b97938dc Mon Sep 17 00:00:00 2001 From: Valerian Saliou Date: Mon, 6 Jan 2025 18:24:05 -0300 Subject: [PATCH] Remove support for Node 4 --- .github/workflows/test.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index da6dde4..6e26d17 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [4.x, 6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x] + node-version: [6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x] fail-fast: false runs-on: ${{ matrix.os }} diff --git a/package.json b/package.json index 6bca707..c79074e 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ ], "main": "lib/crisp_status_reporter", "engines": { - "node": ">= 4.0.0" + "node": ">= 6.0.0" }, "scripts": { "test": "check-build && istanbul cover _mocha"