mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-03-01 09:24:43 +08:00
10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
case $CIRCLE_NODE_INDEX in
|
|
0) yarn test ;;
|
|
1) cd examples/NavigationPlayground && yarn test ;;
|
|
2) cd examples/ReduxExample && yarn test ;;
|
|
esac
|