10 lines
218 B
Bash
Raw Normal View History

#!/bin/bash
set -eo pipefail
case $CIRCLE_NODE_INDEX in
0) yarn test && yarn codecov ;;
2018-03-16 20:08:47 -04:00
1) cd examples/NavigationPlayground && yarn && yarn test ;;
2017-07-19 14:10:43 -07:00
#2) cd examples/ReduxExample && yarn && yarn test ;;
esac