Skip to content

Commit

Permalink
update supported node versions (#1704)
Browse files Browse the repository at this point in the history
* update supported node versions

* fix changelog

* update package json

Co-authored-by: David Goss <[email protected]>
  • Loading branch information
charlierudolph and davidjgoss authored Jun 27, 2021
1 parent 17b4391 commit 94973d4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os:
- ubuntu-latest
- windows-latest
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [12.x, 14.x, 16.x]
fail-fast: false

steps:
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- run: yarn install
- run: yarn test-coverage
- uses: coverallsapp/github-action@master
Expand All @@ -44,5 +44,5 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- run: yarn audit --groups dependencies
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CO
----
## [Unreleased] (In Git)

### Breaking changes

* Drop support for Node.js 10 and 15, add support for Node.js 16

### Added

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=10"
"node": ">=12"
},
"dependencies": {
"@cucumber/create-meta": "^5.0.0",
Expand Down

0 comments on commit 94973d4

Please sign in to comment.