schedulord-frontend/Jenkinsfile

25 lines
419 B
Plaintext
Raw Normal View History

2022-06-08 17:35:09 +00:00
pipeline {
2022-06-09 09:37:08 +00:00
agent any
tools {
nodejs "node"
}
2022-06-09 08:38:34 +00:00
stages {
2022-06-09 09:37:08 +00:00
stage('NPM Install') {
sh 'npm install'
}
2022-06-09 08:38:34 +00:00
2022-06-09 09:37:08 +00:00
stage('Test') {
sh 'ng test --progress=false --watch false'
}
2022-06-09 08:38:34 +00:00
2022-06-09 09:37:08 +00:00
stage('Lint') {
sh 'ng lint'
}
2022-06-09 08:38:34 +00:00
2022-06-09 09:37:08 +00:00
stage('Build') {
sh 'ng build --prod --aot --sm --progress=false'
}
}
2022-06-09 08:06:50 +00:00
}