> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# deepcrawl/deepcrawl-test

Automation Hub Orb used for running a build.


## Jobs

### run-build

Runs a build on Automation Hub.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `startOnly` | boolean | false | Start the build only, without polling for it to finish. |
| `testSuiteId` | string |  | Automation Hub Test Suite ID. |

## Executors

### default

Default executor for running the deepcrawl/deepcrawl-test jobs.


## Examples

### example

Example for running an Automation Hub Build


```yaml
version: '2.1'
orbs:
  deepcrawl-test: deepcrawl/deepcrawl-test@1.0.1
workflows:
  deploy:
    jobs:
      - deepcrawl-test/run-build:
          context: deepcrawl-test
          startOnly: false
          testSuiteId: YOUR_TEST_SUITE_ID
```