I'm a stupid donkey
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:58:42 +02:00
parent abced8fb6c
commit b86ce8fa78
1 changed files with 10 additions and 6 deletions

16
Jenkinsfile vendored
View File

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