Skip to content

Commit 399eea3

Browse files
authored
ci: stop testing against NodeJS v10, v12 (#58)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent a9d1fec commit 399eea3

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
@@ -62,7 +62,10 @@
6262
"@pika/plugin-ts-standard-pkg"
6363
],
6464
[
65-
"@pika/plugin-build-node"
65+
"@pika/plugin-build-node",
66+
{
67+
"minNodeVersion": "14"
68+
}
6669
],
6770
[
6871
"@gr2m/pika-plugin-build-web"
@@ -105,5 +108,8 @@
105108
"extends": [
106109
"github>octokit/.github"
107110
]
111+
},
112+
"engines": {
113+
"node": ">= 14"
108114
}
109115
}

0 commit comments

Comments
 (0)