Skip to content

Commit 62b5c69

Browse files
authoredMay 10, 2022
Drop support for Node 12 (#91)
1 parent 308e330 commit 62b5c69

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13+
- 18
1314
- 16
1415
- 14
15-
- 12
1616
os:
1717
- ubuntu-latest
1818
- windows-latest
1919
steps:
20-
- uses: actions/checkout@v2
21-
- uses: actions/setup-node@v2
20+
- uses: actions/checkout@v3
21+
- uses: actions/setup-node@v3
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- run: npm install

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"type": "module",
1414
"exports": "./index.js",
1515
"engines": {
16-
"node": ">=12"
16+
"node": ">=14"
1717
},
1818
"scripts": {
1919
"test": "xo && ava && tsd"

0 commit comments

Comments
 (0)
Please sign in to comment.