mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-24 17:18:09 +00:00
10 lines
261 B
Bash
Executable File
10 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
case $CIRCLE_NODE_INDEX in
|
|
0) yarn test && yarn codecov ;;
|
|
1) yarn link && cd examples/NavigationPlayground && yarn && yarn link react-navigation && yarn test ;;
|
|
#2) cd examples/ReduxExample && yarn && yarn test ;;
|
|
esac
|