Printing styled table

This commit is contained in:
Auto Rebase
2025-02-13 21:09:53 +01:00
parent 23bdf3eaa6
commit ac6f63d055
2 changed files with 3 additions and 3 deletions

4
app.ts
View File

@@ -303,10 +303,10 @@ const main = async (): Promise<void> => {
writeConsole("All rebase where done successfully", LogLevel.INFO);
} else {
writeConsole("Some rebase failed", LogLevel.WARNING);
styledTable([
console.warn(styledTable([
["Branch", "Action", "Onto branch"],
...failedRebase
]);
]));
}
} catch (error) {
writeConsole("Error during workflow execution", LogLevel.ERROR);