diff --git a/tools/custom-checks/run-custom-checks.ts b/tools/custom-checks/run-custom-checks.ts index cae37f19585..eee5013643e 100644 --- a/tools/custom-checks/run-custom-checks.ts +++ b/tools/custom-checks/run-custom-checks.ts @@ -12,12 +12,7 @@ export async function runCustomChecks( let overallSuccess = true; let overallErrors: string[] = []; - const [majorVersion] = version.split("."); - const nodeV12OrOlder = parseInt(majorVersion) <= 12; - if (nodeV12OrOlder) { - console.log(`${TAG} Checks skipped due to old NodeJS (v${version}) OK.`); - return; - } + console.log("${TAG} Current NodeJS version is v", version); { const [success, errors] = await checkOpenApiJsonSpecs({ argv, env });