Skip to content

Commit dc68be2

Browse files
wolfy1339kfcampbell
andauthoredMay 31, 2023
ci: stop testing against NodeJS v14, v16 (#331)
* build(package): set minimal node version in engines field to v18 BREAKING CHANGE: Drop support for NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 --------- Co-authored-by: Keegan Campbell <me@kfcampbell.com>
1 parent 5175112 commit dc68be2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
 

‎.github/workflows/test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ jobs:
1313
strategy:
1414
matrix:
1515
node_version:
16-
- 14
17-
- 16
1816
- 18
17+
- 20
1918
steps:
2019
- uses: actions/checkout@v3
2120
- name: Use Node.js ${{ matrix.node_version }}

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
[
6161
"@pika/plugin-build-node",
6262
{
63-
"minNodeVersion": "14"
63+
"minNodeVersion": 18
6464
}
6565
],
6666
[
@@ -91,6 +91,6 @@
9191
]
9292
},
9393
"engines": {
94-
"node": ">= 14"
94+
"node": ">= 18"
9595
}
9696
}

0 commit comments

Comments
 (0)
Please sign in to comment.