schedulord-frontend/Jenkinsfile

33 lines
466 B
Groovy

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