pipeline { agent any stages { stage ("build") { steps { nodejs("NodeJS (17.4.0)") { sh "npm run build" } } } } }