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

This commit is contained in:
Juan Ferrer 2019-12-19 14:29:17 +01:00
parent 4f3e3b41fa
commit 325d0aa08e
1 changed files with 8 additions and 4 deletions

12
Jenkinsfile vendored
View File

@ -68,13 +68,17 @@ pipeline {
}
parallel {
stage('Frontend') {
nodejs('node-lts') {
sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=1'
steps {
nodejs('node-lts') {
sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=1'
}
}
}
stage('Backend') {
nodejs('node-lts') {
sh 'gulp backTestDockerOnce --junit --random'
steps {
nodejs('node-lts') {
sh 'gulp backTestDockerOnce --junit --random'
}
}
}
}