pipeline { agent { docker { image 'node:13.10-alpine' } } stages { stage('setup') { steps { sh 'npm install' sh 'set PATH=$PATH:$(pwd)/node_modules/.bin' } } stage('build') { steps { sh 'ng build --prod' } } } }