Skip to content

Commit 94973d4

Browse files
update supported node versions (#1704)
* update supported node versions * fix changelog * update package json Co-authored-by: David Goss <[email protected]>
1 parent 17b4391 commit 94973d4

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
os:
1414
- ubuntu-latest
1515
- windows-latest
16-
node-version: [10.x, 12.x, 14.x, 15.x]
16+
node-version: [12.x, 14.x, 16.x]
1717
fail-fast: false
1818

1919
steps:
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v2
3232
- uses: actions/setup-node@v2
3333
with:
34-
node-version: 14.x
34+
node-version: 16.x
3535
- run: yarn install
3636
- run: yarn test-coverage
3737
- uses: coverallsapp/github-action@master
@@ -44,5 +44,5 @@ jobs:
4444
- uses: actions/checkout@v2
4545
- uses: actions/setup-node@v2
4646
with:
47-
node-version: 14.x
47+
node-version: 16.x
4848
- run: yarn audit --groups dependencies

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CO
99
----
1010
## [Unreleased] (In Git)
1111

12+
### Breaking changes
13+
14+
* Drop support for Node.js 10 and 15, add support for Node.js 16
15+
1216
### Added
1317

1418
### Changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
"main": "./lib/index.js",
166166
"types": "./lib/index.d.ts",
167167
"engines": {
168-
"node": ">=10"
168+
"node": ">=12"
169169
},
170170
"dependencies": {
171171
"@cucumber/create-meta": "^5.0.0",

0 commit comments

Comments
 (0)