Skip to content

Commit 95944a3

Browse files
committed
Drop Node <18.20
Upgrading to WebdriverIO v9 seems to struggle with lower versions.
1 parent ab2193b commit 95944a3

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

Diff for: .github/workflows/push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
matrix:
4949
node-version:
50-
- "18.0"
50+
- "18.20.0"
5151
- ${{ needs.build.outputs.node-version }}
5252
- "lts/hydrogen"
5353
- "lts/iron"

Diff for: README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ flow, as documented [here][4].
2626
environment variable, your `docker-compose.yml` could look something like:
2727

2828
```yaml
29-
version: '3'
29+
---
3030
services:
3131
some_app:
3232
...
@@ -113,7 +113,8 @@ Note that only the `/authorize` and `/access_token` routes are exposed this way.
113113
The compiled version of `fauxauth`, as released to npm, is tested against the
114114
latest versions of the active Node LTS releases, currently Hydrogen (18), Iron
115115
(20) and Jod (22). Compilation is carried out using TypeScript in the Node
116-
version specified in `.nvmrc`.
116+
version specified in `.nvmrc`. The lowest supported version is documented in
117+
`package.json`'s `engines` field.
117118
118119
### Options
119120

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"description": "Helper application for testing OAuth clients",
66
"engines": {
7-
"node": ">=18"
7+
"node": ">=18.20"
88
},
99
"scripts": {
1010
"build": "npm --workspace packages/fauxauth run build",

Diff for: packages/fauxauth/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"/views"
1414
],
1515
"engines": {
16-
"node": ">=18"
16+
"node": ">=18.20"
1717
},
1818
"scripts": {
1919
"prebuild": "rimraf lib/*",

0 commit comments

Comments
 (0)