Skip to content

Commit

Permalink
drop support for older node versions (#2237)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlierudolph authored Feb 16, 2023
1 parent e07d3ff commit 260e943
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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, 18.x, 19.x]
node-version: [14.x, 16.x, 18.x, 19.x]
fail-fast: false

steps:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@
},
"types": "./lib/index.d.ts",
"engines": {
"node": "12 || 14 || >=16"
"node": "14 || 16 || >=18"
},
"enginesTested": {
"node": "12 || 14 || 16 || 17 || 18 || 19"
"node": "14 || 16 || 18 || 19"
},
"dependencies": {
"@cucumber/ci-environment": "9.1.0",
Expand Down

0 comments on commit 260e943

Please sign in to comment.