Jenkinsfile fixes
gitea/salix/test There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2019-12-19 14:28:06 +01:00
parent d5a9a62f73
commit 4f3e3b41fa
1 changed files with 7 additions and 9 deletions

16
Jenkinsfile vendored
View File

@ -67,16 +67,14 @@ pipeline {
NODE_ENV = "" NODE_ENV = ""
} }
parallel { parallel {
steps { stage('Frontend') {
stage('Frontend') { nodejs('node-lts') {
nodejs('node-lts') { sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=1'
sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=1'
}
} }
stage('Backend') { }
nodejs('node-lts') { stage('Backend') {
sh 'gulp backTestDockerOnce --junit --random' nodejs('node-lts') {
} sh 'gulp backTestDockerOnce --junit --random'
} }
} }
} }