From d149c62d9661aeefb4ddc886af2fab66c593d016 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Tue, 14 Jun 2022 10:06:00 -0400 Subject: [PATCH] Drop support for Node 10, 11, 12, 13, 15, and 17. --- .github/workflows/ci-build.yml | 7 ++----- package.json | 4 ++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 16de25ba..87e965a2 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -18,9 +18,6 @@ jobs: steps: - uses: actions/checkout@v2 - uses: volta-cli/action@v1 - with: - node-version: 10.x - - uses: actions/cache@v2 id: yarn-cache with: @@ -43,7 +40,7 @@ jobs: - uses: actions/checkout@v2 - uses: volta-cli/action@v1 with: - node-version: 12.x + node-version: 16.x - uses: actions/cache@v2 id: yarn-cache with: @@ -86,7 +83,7 @@ jobs: - uses: actions/checkout@v2 - uses: volta-cli/action@v1 with: - node-version: 12.x + node-version: 16.x - uses: actions/cache@v2 id: yarn-cache with: diff --git a/package.json b/package.json index 7f26b9f8..3f7a94f2 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,7 @@ "release-it-lerna-changelog": "^3.1.0" }, "engines": { - "node": ">= 10.*" + "node": "14.* || 16.* || >= 18" }, "publishConfig": { "registry": "https://registry.npmjs.org" @@ -96,7 +96,7 @@ } }, "volta": { - "node": "10.24.1", + "node": "14.19.3", "yarn": "1.22.11" } }