From c281d2b1b5e47c45b67bca804d50838a84eb4ef1 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 30 May 2022 11:29:18 +0200 Subject: [PATCH] meta: do not test on EOL versions of Node.js (#3786) --- .github/workflows/ci.yml | 4 +--- package.json | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44fe96d5da8..0bd8cf5c777 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,12 +13,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 16.x, 17.x] + node-version: [14.x, 16.x, 18.x] steps: - name: Checkout sources uses: actions/checkout@v3 - - name: Install Corepack if needed - run: corepack -v || npm install -g corepack - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(corepack yarn config get cacheFolder)" diff --git a/package.json b/package.json index 55ee175ddd0..64d22666bd7 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "pre-commit": "lint:staged", "license": "MIT", "engines": { - "node": "^v14.17.0 || >=v16.0.0", + "node": "^16.15.0 || >=18.0.0", "yarn": "3.2.1" }, "packageManager": "yarn@3.2.1",