Skip to content

Commit

Permalink
Update supported Node.js versions (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgoss authored Feb 7, 2025
1 parent 9becc68 commit f88b99f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '22'
cache: 'npm'
cache-dependency-path: javascript/package-lock.json
- run: npm install-test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
matrix:
os:
- ubuntu-latest
node-version: ["16.x", "17.x", "18.x"]
node-version: ["18.x", "20.x", "22.x", "23.x"]
include:
- os: windows-latest
node-version: "18.x"
node-version: "22.x"
- os: macos-latest
node-version: "18.x"
node-version: "22.x"

steps:
- name: set git core.autocrlf to 'input'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
### Changed
- [.NET] Reduce NuGet size by only targeting .NET Standard 2.0
- [.NET] Changed some types from class to struct, removed IGherkinLine interface and changes some functions from Array to Enumerable
- [JavaScript] BREAKING CHANGE: Update supported Node.js versions to 18, 20, 22 and 23 ([#365](https://github.com/cucumber/gherkin/pull/365))

### Fixed
- [.NET] Fix NuGet package generation
Expand Down

0 comments on commit f88b99f

Please sign in to comment.