More CI parallelization optimizations

This commit is contained in:
Adam Miskiewicz
2017-05-14 23:14:22 -07:00
parent aa84a5e316
commit 9edb4ef5e8
2 changed files with 5 additions and 10 deletions

View File

@@ -3,7 +3,7 @@
set -eo pipefail
case $CIRCLE_NODE_INDEX in
0) yarn test && yarn codecov ;;
1) cd examples/NavigationPlayground && yarn test ;;
2) cd examples/ReduxExample && yarn test ;;
0) yarn && yarn test && yarn codecov ;;
1) cd examples/NavigationPlayground && yarn && yarn test ;;
2) cd examples/ReduxExample && yarn && yarn test ;;
esac