From e2891022b9f7f154f7abb991d698b98936dabddc Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Mon, 19 Jul 2021 20:55:59 -0400 Subject: [PATCH] only test against and support supported node versions --- .github/workflows/continuous-integration.yml | 8 -------- package.json | 5 ++++- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 54fd5d3..92cc7bc 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -21,14 +21,6 @@ jobs: - 16 - 14 - 12 - - 10 - - 9 - - '8' - - '7' - - '6' - - '4' - - '0.12' - # - '0.10' steps: # checkout code - uses: actions/checkout@v2 diff --git a/package.json b/package.json index 96dedd5..9fab3eb 100644 --- a/package.json +++ b/package.json @@ -27,5 +27,8 @@ "bugs": { "url": "https://github.com/evanw/node-source-map-support/issues" }, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=12" + } }