fix: refs #8698 handle promise rejection in getChangedModules function
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2025-03-05 12:57:23 +01:00
parent 31bfe6c44e
commit d01951a709
1 changed files with 5 additions and 1 deletions

View File

@ -21,4 +21,8 @@ async function getChangedModules() {
return [...changedModules].join(',');
}
getChangedModules();
getChangedModules()
.then((modules) => console.log(modules)) // return
.catch(() => {
process.exit(1);
});