We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 959c254 commit a17c83aCopy full SHA for a17c83a
1 file changed
scripts/ci/mod.ts
@@ -1,4 +1,5 @@
1
import { error } from '@actions/core';
2
+import { delay } from '@std/async';
3
import { bold, red } from '@std/fmt/colors';
4
5
export interface CommandParams {
@@ -36,6 +37,10 @@ export async function runCommands(
36
37
38
console.log(`\n${bold('-'.repeat(width))}\n\n`);
39
}
40
+
41
+ if (isCI()) {
42
+ await delay(500);
43
+ }
44
45
46
0 commit comments