Merge branch 'dev' into 8363-RefactorItemFixedPrice
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jon Elias 2025-04-07 11:47:04 +00:00
commit b782da7a8d
2 changed files with 2 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -128,7 +128,7 @@ pipeline {
def modules = sh(script: 'node test/cypress/docker/find/find.js', returnStdout: true).trim()
echo "E2E MODULES: ${modules}"
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
sh "sh test/cypress/docker/cypressParallel.sh 1 '${modules}'"
sh "sh test/cypress/docker/cypressParallel.sh 1"
}
}
}

View File

@ -16,6 +16,7 @@ async function getChangedModules() {
let changedModules = new Set();
const changes = getGitDiff(process.argv);
for (const change of changes) {
if (!change) continue;
if (!FINDED_PATHS.some((prefix) => change.startsWith(prefix))) return '';
const changedArray = [
...changedModules,