Skip to content

Commit bd6ed90

Browse files
authored
ci: stop testing against NodeJS v10, v12 (#61)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent a1542ab commit bd6ed90

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@v3

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@
5959
"@pika/plugin-ts-standard-pkg"
6060
],
6161
[
62-
"@pika/plugin-build-node"
62+
"@pika/plugin-build-node",
63+
{
64+
"minNodeVersion": "14"
65+
}
6366
],
6467
[
6568
"@pika/plugin-build-web"
@@ -102,5 +105,8 @@
102105
"extends": [
103106
"github>octokit/.github"
104107
]
108+
},
109+
"engines": {
110+
"node": ">= 14"
105111
}
106112
}

0 commit comments

Comments
 (0)