Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 2fe5ab1

Browse files
fix: update minimal required Node.js version
1 parent fa31e6d commit 2fe5ab1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function run (operation = createWebdriverIO) {
3131
/**
3232
* ensure right Node.js version is used
3333
*/
34-
const unsupportedNodeVersion = !semver.satisfies(process.version, '>=16')
34+
const unsupportedNodeVersion = !semver.satisfies(process.version, '>=18.18.0')
3535
if (unsupportedNodeVersion) {
3636
console.log(chalk.yellow(UNSUPPORTED_NODE_VERSION))
3737
return

0 commit comments

Comments
 (0)