diff --git a/src/main.ts b/src/main.ts index 56537d5..cdb78d9 100644 --- a/src/main.ts +++ b/src/main.ts @@ -74,6 +74,7 @@ async function run(): Promise { for (const check of checks.data.check_runs) { if (check.name.startsWith("Travis CI") && check.conclusion === "success") e2ePassed = true; if (check.name === 'e2e' && check.conclusion === "success") e2ePassed = true; + if (check.name === 'test' && check.conclusion === "success") unitTestsPassed = true; // so if Travis or GithubActions passes - it still gets green lights since its the same set of tests }