pipeline { agent any tools { nodejs "node" } stages { stage('NPM Install') { sh 'npm install' } stage('Test') { sh 'ng test --progress=false --watch false' } stage('Lint') { sh 'ng lint' } stage('Build') { sh 'ng build --prod --aot --sm --progress=false' } } }