...
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 11:38:54 +02:00
parent 3194710388
commit b664645c85
1 changed files with 0 additions and 7 deletions

7
Jenkinsfile vendored
View File

@ -6,16 +6,11 @@ pipeline {
stages {
stage('NPM Install') {
withEnv(["NPM_CONFIG_LOGLEVEL=warn"]) {
sh 'npm install'
}
}
stage('Test') {
withEnv(["CHROME_BIN=/usr/bin/chromium-browser"]) {
sh 'ng test --progress=false --watch false'
}
junit '**/test-results.xml'
}
stage('Lint') {
@ -23,9 +18,7 @@ pipeline {
}
stage('Build') {
milestone()
sh 'ng build --prod --aot --sm --progress=false'
}
}
}