062757fe3c
- Specifically to solve an OOM for babel.
14 lines
314 B
YAML
14 lines
314 B
YAML
executor: node
|
|
resource_class: medium+
|
|
steps:
|
|
- checkout
|
|
- restore_yarn_cache
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Run Browserstack Tests
|
|
command: |
|
|
# Add ./bin to the PATH so vault binary can be found.
|
|
export PATH="${PWD}"/bin:${PATH}
|
|
make test-ui-browserstack
|