Add an option to allow waiting until an analysis has been processed before finishing the Action.
This commit is contained in:
parent
2ecc17d74f
commit
316ad9d919
8 changed files with 133 additions and 8 deletions
|
|
@ -564,3 +564,7 @@ export async function bundleDb(
|
|||
}
|
||||
return databaseBundlePath;
|
||||
}
|
||||
|
||||
export async function delay(milliseconds: number) {
|
||||
return new Promise((resolve) => setTimeout(resolve, milliseconds));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue