test: refs #6695 better stages
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2025-01-31 14:58:02 +01:00
parent 940bc7f1ff
commit caf76e4071
1 changed files with 61 additions and 63 deletions

6
Jenkinsfile vendored
View File

@ -66,8 +66,7 @@ pipeline {
sh 'pnpm install --prefer-offline'
}
}
stages {
stage('Unit') {
stage('Test: Unit') {
when {
expression { !PROTECTED_BRANCH }
}
@ -86,7 +85,7 @@ pipeline {
}
}
}
stage('E2E') {
stage('Test: E2E') {
when {
expression { !PROTECTED_BRANCH }
}
@ -137,7 +136,6 @@ pipeline {
}
}
}
}
stage('Build') {
when {
expression { PROTECTED_BRANCH }