fixed indentation
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:41:42 +02:00
parent b664645c85
commit abced8fb6c
1 changed files with 22 additions and 17 deletions

39
Jenkinsfile vendored
View File

@ -3,22 +3,27 @@ pipeline {
tools {
nodejs "node"
}
stages {
stage('NPM Install') {
sh 'npm install'
}
stage('Test') {
sh 'ng test --progress=false --watch false'
}
stage('Lint') {
sh 'ng lint'
}
stage('Build') {
sh 'ng build --prod --aot --sm --progress=false'
}
}
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') {
sh 'ng lint'
}
stage('Build') {
milestone()
sh 'ng build --prod --aot --sm --progress=false'
}
}
}