An internal queue for async actions that we want to finish before quitting the build.
Use the BuildReport.queue: [] to add async actions to the queue.
const promise = asyncAction(); // some async action that returns a promise
build.queue(promise);The queue will wait for all actions to finish before quitting the build.