1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-03 19:10:04 +00:00

chore(ci): add node version check

This commit is contained in:
Krishna Acondy
2021-09-13 08:41:58 +01:00
parent cd91780cf5
commit 31cee0af91
3 changed files with 19 additions and 1 deletions

16
checkNodeVersion.js Normal file
View File

@@ -0,0 +1,16 @@
const result = process.versions
if (result && result.node) {
if (parseInt(result.node) < 14) {
console.log(
'\x1b[31m%s\x1b[0m',
`❌ Process failed due to Node Version,\nPlease install and use Node Version >= 14\nYour current Node Version is: ${result.node}`
)
process.exit(1)
}
} else {
console.log(
'\x1b[31m%s\x1b[0m',
'Something went wrong while checking Node version'
)
process.exit(1)
}