From c428b63484cf3e27e09f4214eb6aa92d6a6d00a1 Mon Sep 17 00:00:00 2001 From: Brent Vatne Date: Sat, 16 Mar 2019 09:40:31 -0700 Subject: [PATCH] Attempted fix for CI --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 6f9318ac..ac07a223 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -4,5 +4,5 @@ set -eo pipefail case $CIRCLE_NODE_INDEX in 0) yarn test && yarn codecov ;; - 1) cd examples/NavigationPlayground && yarn && yarn test ;; + 1) yarn && cd examples/NavigationPlayground && yarn && yarn test ;; esac