Add an option to allow waiting until an analysis has been processed before finishing the Action.

This commit is contained in:
Chris Gavin 2021-10-18 11:43:30 +01:00
parent 2ecc17d74f
commit 316ad9d919
No known key found for this signature in database
GPG key ID: 07F950B80C27E4DA
8 changed files with 133 additions and 8 deletions

View file

@ -564,3 +564,7 @@ export async function bundleDb(
}
return databaseBundlePath;
}
export async function delay(milliseconds: number) {
return new Promise((resolve) => setTimeout(resolve, milliseconds));
}