fix: test secuendiales
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Vicent Llopis 2023-06-16 13:27:35 +02:00
parent 0a9bdc6f89
commit 1f4e98075c
1 changed files with 11 additions and 9 deletions

20
Jenkinsfile vendored
View File

@ -54,17 +54,19 @@ pipeline {
NODE_ENV = ""
TZ = 'Europe/Madrid'
}
stage('Frontend') {
steps {
nodejs('node-v20') {
sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=2'
steps {
stage('Frontend') {
steps {
nodejs('node-v20') {
sh 'jest --ci --reporters=default --reporters=jest-junit --maxWorkers=2'
}
}
}
}
stage('Backend') {
steps {
nodejs('node-v20') {
sh 'npm run test:back:ci'
stage('Backend') {
steps {
nodejs('node-v20') {
sh 'npm run test:back:ci'
}
}
}
}