perf(core): Introduce concurrency control for main mode (#9453)

This commit is contained in:
Iván Ovejero
2024-06-12 15:05:43 +02:00
committed by GitHub
parent 6c1a4c8ebf
commit 797342343f
31 changed files with 919 additions and 57 deletions

View File

@@ -1,13 +1,13 @@
export const ExecutionStatusList = [
'canceled' as const,
'crashed' as const,
'error' as const,
'new' as const,
'running' as const,
'success' as const,
'unknown' as const,
'waiting' as const,
'warning' as const,
];
'canceled',
'crashed',
'error',
'new',
'running',
'success',
'unknown',
'waiting',
'warning',
] as const;
export type ExecutionStatus = (typeof ExecutionStatusList)[number];