Skip to content

Commit 78262ce

Browse files
committed
minimum requirement node v15
Signed-off-by: Tuan Anh Tran <me@tuananh.org>
1 parent e81f44f commit 78262ce

4 files changed

Lines changed: 10 additions & 30 deletions

File tree

.github/workflows/ci-bun.yaml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,10 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest]
12-
node-version: [10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x, 17.x, 18.x, 19.x, 20.x, 21.x, latest]
13-
exclude:
14-
- os: macos-latest
15-
node-version: 10.x
16-
- os: macos-latest
17-
node-version: 11.x
18-
- os: macos-latest
19-
node-version: 12.x
20-
- os: macos-latest
21-
node-version: 13.x
22-
- os: macos-latest
23-
node-version: 14.x
24-
- os: macos-latest
25-
node-version: 15.x
12+
node-version: [15.x, 16.x, 17.x, 18.x, 19.x, 20.x, 21.x, latest]
13+
# exclude:
14+
# - os: macos-latest
15+
# node-version: 15.x
2616
runs-on: ${{matrix.os}}
2717
steps:
2818
- uses: actions/checkout@v2

.github/workflows/ci.yaml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,10 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
node-version: [10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x, 17.x, 18.x, 19.x, 20.x, 21.x, latest]
13-
exclude:
14-
- os: macos-latest
15-
node-version: 10.x
16-
- os: macos-latest
17-
node-version: 11.x
18-
- os: macos-latest
19-
node-version: 12.x
20-
- os: macos-latest
21-
node-version: 13.x
22-
- os: macos-latest
23-
node-version: 14.x
24-
- os: macos-latest
25-
node-version: 15.x
12+
node-version: [15.x, 16.x, 17.x, 18.x, 19.x, 20.x, 21.x, latest]
13+
# exclude:
14+
# - os: macos-latest
15+
# node-version: 15.x
2616
runs-on: ${{matrix.os}}
2717
steps:
2818
- uses: actions/checkout@v2

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: '20.x'
16+
node-version: '22.x'
1717
registry-url: 'https://registry.npmjs.org'
1818
- run: npm install -g npm
1919
- run: npm install

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"main": "index.js",
88
"typings": "index.d.ts",
99
"engines": {
10-
"node": ">= 12.0.0"
10+
"node": ">= 15.0.0"
1111
},
1212
"scripts": {
1313
"test": "tape test/*.test.js",

0 commit comments

Comments
 (0)