Skip to content

Commit

Permalink
refactor(core): Increase minimum supported Node.js version to 18.17 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov authored May 29, 2024
1 parent dbaac82 commit 4629354
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions packages/cli/bin/n8n
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,18 @@ if (process.argv.length === 2) {
}

const nodeVersion = process.versions.node;
const nodeVersionMajor = require('semver').major(nodeVersion);
const { major, gte } = require('semver');

if (![18, 20, 22].includes(nodeVersionMajor)) {
const MINIMUM_SUPPORTED_NODE_VERSION = '18.17.0';
const ENFORCE_MIN_NODE_VERSION = process.env.E2E_TESTS !== 'true';

if (
(ENFORCE_MIN_NODE_VERSION && !gte(nodeVersion, MINIMUM_SUPPORTED_NODE_VERSION)) ||
![18, 20, 22].includes(major(nodeVersion))
) {
console.log(`
Your Node.js version (${nodeVersion}) is currently not supported by n8n.
Please use Node.js v18 (recommended), v20, or v22 instead!
Your Node.js version ${nodeVersion} is currently not supported by n8n.
Please use Node.js v${MINIMUM_SUPPORTED_NODE_VERSION} (recommended), v20, or v22 instead!
`);
process.exit(1);
}
Expand Down

0 comments on commit 4629354

Please sign in to comment.