Skip to content

Commit 329e219

Browse files
committed
Raise minimum Node.js version to v18
1 parent 4be9211 commit 329e219

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,14 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
node-version:
15-
- 12
16-
- 14
17-
- 16
18-
architecture:
19-
- x64
15+
- 18
16+
- 20
17+
- latest
2018
steps:
21-
- uses: actions/checkout@v2
22-
- uses: actions/setup-node@v2
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
2321
with:
2422
node-version: ${{ matrix.node-version }}
25-
architecture: ${{ matrix.architecture }}
2623
- run: yarn --frozen-lockfile
2724
- run: yarn lint
2825
- run: yarn test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"mocha": "^9.1.1"
2626
},
2727
"engines": {
28-
"node": ">=12"
28+
"node": ">=18"
2929
}
3030
}

0 commit comments

Comments
 (0)