diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0609bf00b..1a8af3190 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -20,7 +20,7 @@ jobs: - ubuntu-latest - windows-latest # these versions must be kept in sync with enginesTested.node in package.json - node-version: [12.x, 14.x, 16.x, 17.x] + node-version: [12.x, 14.x, 16.x, 17.x, 18.x] fail-fast: false steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index b02cbb183..0b9c4d0a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) on how to contribute to Cucumber. ## [Unreleased] +### Added +- Explicit support for Node.js 18 ([#2007](https://github.com/cucumber/cucumber-js/pull/2007)) ## [8.1.1] - 2022-04-20 ### Fixed diff --git a/package.json b/package.json index 240ac9c91..5a2e3d6fc 100644 --- a/package.json +++ b/package.json @@ -191,7 +191,7 @@ "node": "12 || 14 || >=16" }, "enginesTested": { - "node": "12 || 14 || 16 || 17" + "node": "12 || 14 || 16 || 17 || 18" }, "dependencies": { "@cspotcode/source-map-support": "^0.7.0",