Skip to content

Commit 8c56e5c

Browse files
authoredJul 7, 2022
ci: stop testing against NodeJS v10, v12 (#232)
* build(package): set minimal node version in engines field to v14 BREAKING CHANGE: Drop support for NodeJS v10, v12 * ci: stop testing against NodeJS v10, v12 * ci: stop testing against NodeJS v10, v12 * ci: stop testing against NodeJS v10, v12 * ci: stop testing against NodeJS v10, v12
1 parent f23f340 commit 8c56e5c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
 

‎.github/workflows/test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ jobs:
1414
strategy:
1515
matrix:
1616
node_version:
17-
- 10
18-
- 12
1917
- 14
2018
- 16
19+
- 18
2120

2221
steps:
2322
- uses: actions/checkout@v3

‎package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@
7070
"@pika/plugin-ts-standard-pkg"
7171
],
7272
[
73-
"@pika/plugin-build-node"
73+
"@pika/plugin-build-node",
74+
{
75+
"minNodeVersion": "14"
76+
}
7477
],
7578
[
7679
"@pika/plugin-build-web"
@@ -81,5 +84,8 @@
8184
"extends": [
8285
"github>octokit/.github"
8386
]
87+
},
88+
"engines": {
89+
"node": ">= 14"
8490
}
8591
}

0 commit comments

Comments
 (0)
Please sign in to comment.