Skip to content

Commit 5e8705e

Browse files
ehmickysindresorhus
andauthoredJul 2, 2021
Drop support for Node <12 (#79)
Co-authored-by: Sindre Sorhus <sindresorhus@gmail.com>
1 parent 587b41e commit 5e8705e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
 

‎.github/workflows/main.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13+
- 16
1314
- 14
1415
- 12
15-
- 10
16-
- 8
1716
os:
1817
- ubuntu-latest
1918
- windows-latest
2019
steps:
2120
- uses: actions/checkout@v2
22-
- uses: actions/setup-node@v1
21+
- uses: actions/setup-node@v2
2322
with:
2423
node-version: ${{ matrix.node-version }}
2524
- run: npm install

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"url": "https://sindresorhus.com"
1212
},
1313
"engines": {
14-
"node": ">=8"
14+
"node": ">=12"
1515
},
1616
"scripts": {
1717
"test": "xo && ava && tsd"

0 commit comments

Comments
 (0)
Please sign in to comment.