Skip to content

Commit 526eb2b

Browse files
authoredJul 7, 2022
ci: stop testing against NodeJS v10, v12 (#157)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent 4d22af3 commit 526eb2b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
strategy:
1919
matrix:
2020
node_version:
21-
- 12
2221
- 14
2322
- 16
23+
- 18
2424
steps:
2525
- uses: actions/checkout@master
2626
- name: Test with Node.js ${{ matrix.node_version }}

‎package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@
7272
"@pika/plugin-ts-standard-pkg"
7373
],
7474
[
75-
"@pika/plugin-build-node"
75+
"@pika/plugin-build-node",
76+
{
77+
"minNodeVersion": "14"
78+
}
7679
],
7780
[
7881
"@pika/plugin-build-web"
@@ -120,5 +123,8 @@
120123
"extends": [
121124
"github>octokit/.github"
122125
]
126+
},
127+
"engines": {
128+
"node": ">= 14"
123129
}
124130
}

0 commit comments

Comments
 (0)
Please sign in to comment.