Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 399 Bytes

File metadata and controls

15 lines (9 loc) · 399 Bytes

Async Queue Plugin

An internal queue for async actions that we want to finish before quitting the build.

Usage

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.