2022-06-08 17:35:09 +00:00
|
|
|
pipeline {
|
2022-06-09 07:45:33 +00:00
|
|
|
agent any
|
|
|
|
tools {
|
|
|
|
nodejs "node"
|
|
|
|
}
|
|
|
|
stages {
|
|
|
|
stage('NPM Install') {
|
|
|
|
steps {
|
|
|
|
sh 'npm install'
|
|
|
|
}
|
2022-06-08 17:35:09 +00:00
|
|
|
}
|
2022-06-09 07:45:33 +00:00
|
|
|
|
|
|
|
// stage('Test') {
|
|
|
|
// steps {
|
|
|
|
// sh 'npm run ng test --progress=false --watch false'
|
|
|
|
// junit '**/test-results.xml'
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
stage('Lint') {
|
|
|
|
steps {
|
|
|
|
sh 'npm run ng lint'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Build') {
|
|
|
|
steps {
|
|
|
|
sh 'npm run ng build --prod --aot --sm --progress=false'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|