Skip to content

Commit 85f55d4

Browse files
committed
Require 12.19.0+ or 14.10.0+ due to async cleanup
1 parent cb7cd26 commit 85f55d4

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ jobs:
1414
name: "*nix Tests"
1515
strategy:
1616
matrix:
17-
# TODO wait for https://github.com/nodejs/node/pull/34819 backport to 10 + 12
18-
node: [14]
17+
node: [12, 14]
1918
os: [ubuntu-16.04, macOS-10.15]
2019
runs-on: ${{ matrix.os }}
2120
steps:
@@ -73,8 +72,7 @@ jobs:
7372
name: Windows Tests
7473
strategy:
7574
matrix:
76-
# TODO wait for https://github.com/nodejs/node/pull/34819 backport to 10 + 12
77-
node: [14]
75+
node: [12, 14]
7876
arch: [x86, x64]
7977
runs-on: windows-2016
8078
steps:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"lib": "./lib"
3636
},
3737
"engines": {
38-
"node": ">= 6"
38+
"node": ">= 12.19.0 < 13 || >= 14.10.0"
3939
},
4040
"dependencies": {
4141
"fs-extra": "^7.0.0",

0 commit comments

Comments
 (0)