Skip to content

Commit 12433aa

Browse files
Drop Node 10 support
Increase minimum Node version to 12. Node 10 reached end-of-life on April 30, 2021.
1 parent 3fd081b commit 12433aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
node-version: [10.x, 14.x]
21+
node-version: [12.x, 14.x]
2222

2323
steps:
2424
- name: Checkout repository

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
"sideEffects": false,
2020
"engines": {
21-
"node": ">=10"
21+
"node": ">=12"
2222
},
2323
"scripts": {
2424
"build": "run-s clean build:*",

0 commit comments

Comments
 (0)