maybe today
gitea_dndsources/schedulord-frontend/pipeline/head Something is wrong with the build of this commit Details

This commit is contained in:
Jesse James Isler 2022-06-09 12:04:50 +02:00
parent 7e6b165876
commit bd1c5a8ad4
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -12,20 +12,20 @@ pipeline {
stage('Test') { stage('Test') {
steps { steps {
sh 'ng test --progress=false --watch false' sh 'npm run ng test --progress=false --watch false'
junit '**/test-results.xml' junit '**/test-results.xml'
} }
} }
stage('Lint') { stage('Lint') {
steps { steps {
sh 'ng lint' sh 'npm run ng lint'
} }
} }
stage('Build') { stage('Build') {
steps { steps {
sh 'ng build --prod --aot --sm --progress=false' sh 'npm run ng build --prod --aot --sm --progress=false'
} }
} }
} }