Skip to content

Commit

Permalink
chore(node): now supports Node 12 at least and add tests on Node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
fthouraud committed Jul 15, 2021
1 parent 3fcbfe8 commit 179dbed
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [12.x, 14.x, 16.x]
cucumber-version: [7.x]

steps:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ It's also the perfect companion for testing CLI applications built with commande

## Requirements

- Node.js `>=8.12.0`
- Node.js `>=12.0.0`
- cucumber `>=7.0.0`

## Installation
Expand Down Expand Up @@ -720,7 +720,7 @@ Given:
- /^(?:I )?do not follow redirect$/
- /^(?:I )?follow redirect$/
- /^(?:I )?assign request headers$/
- /^(?:I )?set ([a-zA-Z0-9-]+) request header to (.+)$/
- /^(?:I )?set ([a-zA-Z0-9-_]+) request header to (.+)$/
- /^(?:I )?clear request headers/
- /^(?:I )?set request json body$/
- /^(?:I )?set request json body from (.+)$/
Expand Down
2 changes: 1 addition & 1 deletion doc/README.tpl.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ It's also the perfect companion for testing CLI applications built with commande

## Requirements

- Node.js `>=8.12.0`
- Node.js `>=12.0.0`
- cucumber `>=7.0.0`

## Installation
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"license": "MIT",
"engines": {
"node": ">=10"
"node": ">=12"
},
"engineStrict": true,
"dependencies": {
Expand Down

0 comments on commit 179dbed

Please sign in to comment.