pipeline { agent any stages { stage('mocha') { steps { sh 'npm install --dev' sh 'npm run test' } } } }