From 2f5c13b0812e53911fc594f6f27b1e0fcd276333 Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Sun, 10 May 2020 20:37:55 -0400 Subject: [PATCH] Bump minimum supported node version to 10 --- .github/workflows/continuous-integration.yml | 17 ++++++++++------- package.json | 2 +- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e12e70424..4c54d31a7 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -14,27 +14,30 @@ jobs: strategy: fail-fast: false matrix: - flavor: [1, 2, 3, 4, 5, 6, 7] + flavor: [1, 2, 3, 4, 5, 6, 7, 8] include: - flavor: 1 - node: 6 + node: 10 typescript: typescript@latest - flavor: 2 - node: 13 + node: 12 typescript: typescript@latest - flavor: 3 node: 13 - typescript: typescript@2.7 + typescript: typescript@latest - flavor: 4 node: 13 - typescript: typescript@next + typescript: typescript@2.7 - flavor: 5 + node: 13 + typescript: typescript@next + - flavor: 6 node: 14 typescript: typescript@latest - - flavor: 6 + - flavor: 7 node: 14 typescript: typescript@2.7 - - flavor: 7 + - flavor: 8 node: 14 typescript: typescript@next steps: diff --git a/package.json b/package.json index b966398ba..61d244640 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "prepare": "npm run build" }, "engines": { - "node": ">=6.0.0" + "node": ">=10.0.0" }, "repository": { "type": "git",