CI : workflow validate.yml, manifeste ci.required:true, garde VITEST, tests isolés
All checks were successful
Validation applicative / TypeScript, tests et build (push) Successful in 3m8s

This commit is contained in:
Manus CI
2026-08-21 10:31:26 +00:00
parent 2422784aeb
commit 06afee0d0b
4 changed files with 56 additions and 4 deletions

View File

@@ -63,4 +63,7 @@ async function startServer() {
});
}
startServer().catch(console.error);
// Vitest ne doit jamais démarrer un serveur HTTP.
if (!process.env.VITEST) {
startServer().catch(console.error);
}