UNPKG

359 BJavaScriptView Raw
1const PENDING = 'pending'
2const CREATING = 'creating'
3const BUILDING = 'building'
4const RUNNING = 'running'
5const DEBUGGING = 'debugging'
6const ERRORED = 'errored'
7const FAILED = 'failed'
8const SUCCEEDED = 'succeeded'
9const CANCELLED = 'cancelled'
10
11module.exports = {
12 PENDING, CREATING, BUILDING, RUNNING, DEBUGGING, ERRORED, FAILED, SUCCEEDED, CANCELLED
13}