Skip to content

Commit bc519ec

Browse files
authored
ci: stop testing against NodeJS v10, v12 (#62)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent da2c6f4 commit bc519ec

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
@@ -60,7 +60,10 @@
6060
"@pika/plugin-ts-standard-pkg"
6161
],
6262
[
63-
"@pika/plugin-build-node"
63+
"@pika/plugin-build-node",
64+
{
65+
"minNodeVersion": "14"
66+
}
6467
]
6568
]
6669
},
@@ -103,5 +106,8 @@
103106
"extends": [
104107
"github>octokit/.github"
105108
]
109+
},
110+
"engines": {
111+
"node": ">= 14"
106112
}
107113
}

0 commit comments

Comments
 (0)