From 123832ebad65c70bc501cce2b656403382e234c5 Mon Sep 17 00:00:00 2001 From: Paul Melnikow Date: Mon, 10 Feb 2020 22:58:30 -0500 Subject: [PATCH] Require Node 10+ (#1895) BREAKING CHANGE: Require Node 10+ (#1895) --- .github/workflows/continuous-integration.yaml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index 673ec6eb6..610c678ab 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -161,5 +161,5 @@ jobs: strategy: fail-fast: false matrix: - node-version: [8, 10, 12, 13] + node-version: [10, 12, 13] os: [macos-latest, ubuntu-latest, windows-latest] diff --git a/package.json b/package.json index 210f72d45..389755ffa 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "url": "http://github.com/nock/nock/issues" }, "engines": { - "node": ">= 8.0" + "node": ">= 10.13" }, "main": "./index.js", "types": "types",