Skip to content

Commit a17c83a

Browse files
committed
fix(scripts/ci): wait a bit to go to the next command's output in CI
1 parent 959c254 commit a17c83a

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

scripts/ci/mod.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { error } from '@actions/core';
2+
import { delay } from '@std/async';
23
import { bold, red } from '@std/fmt/colors';
34

45
export interface CommandParams {
@@ -36,6 +37,10 @@ export async function runCommands(
3637

3738
console.log(`\n${bold('-'.repeat(width))}\n\n`);
3839
}
40+
41+
if (isCI()) {
42+
await delay(500);
43+
}
3944
}
4045
}
4146

0 commit comments

Comments
 (0)