Skip to content

Commit

Permalink
add circle job test-15
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilad Gray committed Apr 24, 2018
1 parent a1d4e08 commit 85e984f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,27 @@ jobs:
3) yarn lerna run test --scope '@blueprintjs/{icons,labs,select}' ;; \
esac
test-15:
docker:
- image: circleci/node:8.10.0-browsers
environment:
CHROME_BIN: "/usr/bin/google-chrome"
parallelism: 4
steps:
- checkout
- attach_workspace:
at: '.'
- restore_cache:
key: v7-dependency-cache-{{ checksum "yarn.lock" }}
- run:
command: |
case $CIRCLE_NODE_INDEX in \
0) yarn lerna run test15 --scope '@blueprintjs/core' ;; \
1) yarn lerna run test15 --scope '@blueprintjs/{datetime,timezone}' ;; \
2) yarn lerna run test15 --scope '@blueprintjs/table' ;; \
3) yarn lerna run test15 --scope '@blueprintjs/{icons,labs,select}' ;; \
esac
deploy-preview:
docker:
- image: circleci/node:8.10.0
Expand Down Expand Up @@ -136,6 +157,8 @@ workflows:
requires: [compile]
- test:
requires: [compile]
- test-15:
requires: [compile]
- deploy-preview:
requires: [dist]
- deploy-npm:
Expand Down

1 comment on commit 85e984f

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add circle job `test-15`

Preview: documentation | landing | table

Please sign in to comment.