ci: refs#6706 Jenkinsfile fixes
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Juan Ferrer 2024-02-04 21:02:22 +01:00
parent 1c538d58c2
commit 0669a3db28
1 changed files with 10 additions and 14 deletions

4
Jenkinsfile vendored
View File

@ -58,8 +58,6 @@ pipeline {
environment { environment {
NODE_ENV = "" NODE_ENV = ""
} }
parallel {
stage('Backend') {
steps { steps {
sh 'pnpm install --prefer-offline' sh 'pnpm install --prefer-offline'
} }
@ -72,8 +70,6 @@ pipeline {
sh 'pnpm install --prefer-offline --prefix=print' sh 'pnpm install --prefer-offline --prefix=print'
} }
} }
}
}
stage('Test') { stage('Test') {
when { when {
expression { RUN_TESTS } expression { RUN_TESTS }