From 759e47e1a11664ed7f1579fe5bc706ea74cdbb27 Mon Sep 17 00:00:00 2001 From: chimurai <655241+chimurai@users.noreply.github.com> Date: Sat, 26 Aug 2023 20:23:03 +0000 Subject: [PATCH] chore(package): drop node v14 [BREAKING CHANGE] --- .github/workflows/ci.yml | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 504fd09..887afff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,10 +10,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Use Node.js 18.x + - name: Use Node.js 20.x uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 20.x - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) @@ -39,7 +39,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [16.x, 18.x, 20.x] steps: @@ -77,10 +77,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Use Node.js 18.x + - name: Use Node.js 20.x uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 20.x - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) diff --git a/package.json b/package.json index 070f82f..2f5ba93 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "checker" ], "engines": { - "node": "^14.13.1 || >=16.0.0" + "node": "^16.0.0 || ^18.0.0 || >= 20.0.0" }, "type": "module", "exports": "./dist/index.js",