Skip to content

Commit

Permalink
chore(package): drop node v14 [BREAKING CHANGE]
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai committed Aug 26, 2023
1 parent bbfa0bd commit 759e47e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -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'`)
Expand All @@ -39,7 +39,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:

Expand Down Expand Up @@ -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'`)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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",
Expand Down

0 comments on commit 759e47e

Please sign in to comment.