schedulord-frontend/Jenkinsfile
Jesse James Isler b664645c85
Some checks failed
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit
...
2022-06-09 11:38:54 +02:00

25 lines
419 B
Groovy

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'
}
}
}