From 66f00126a77b2452412333cc8ed8a3d04d500d24 Mon Sep 17 00:00:00 2001 From: David Goss Date: Thu, 21 Apr 2022 08:22:08 +0100 Subject: [PATCH] add config for node 18 testing (#2007) * add config for node 18 testing * add CHANGELOG.md entry --- .github/workflows/build.yaml | 2 +- CHANGELOG.md | 2 ++ package.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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",