pipeline { agent any stages { stage('Build') { npm run build } stage('Deploy') { steps { echo 'Deploying....' } } } }