Skip to content

Commit d9b6378

Browse files
authored
ci: stop testing against NodeJS v10, v12 (#2243)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent e537c9e commit d9b6378

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node_version: ["12", "14", "16"]
14+
node_version:
15+
- 14
16+
- 16
17+
- 18
1518

1619
steps:
1720
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@
5454
"@pika/plugin-ts-standard-pkg"
5555
],
5656
[
57-
"@pika/plugin-build-node"
57+
"@pika/plugin-build-node",
58+
{
59+
"minNodeVersion": "14"
60+
}
5861
],
5962
[
6063
"@pika/plugin-build-web"
@@ -115,5 +118,8 @@
115118
"extends": [
116119
"github>octokit/.github"
117120
]
121+
},
122+
"engines": {
123+
"node": ">= 14"
118124
}
119125
}

0 commit comments

Comments
 (0)