updated jenkinsfile
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit Details

This commit is contained in:
Jesse James Isler 2022-06-09 13:44:35 +02:00
parent 9da88e1e98
commit b1c0984d61
1 changed files with 11 additions and 5 deletions

16
Jenkinsfile vendored
View File

@ -17,16 +17,22 @@ pipeline {
// }
// }
stage('Lint') {
steps {
sh 'npm run ng lint'
}
}
// stage('Lint') {
// steps {
// sh 'npm run ng lint'
// }
// }
stage('Build') {
steps {
sh 'npm run ng build --prod --aot --sm --progress=false'
}
}
stage('Build Dockerfile') {
steps {
sh 'docker build . -t schedulord-frontend'
}
}
}
}