pipeline { agent any stages { stage('Check Node.js Version') { steps { script { nodejs('nodejs') { sh 'node --version' } } } } } }