We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c7527 commit 5504ae5Copy full SHA for 5504ae5
build/ci.sh
@@ -4,7 +4,13 @@ npm run flow
4
npm run test:cover
5
npm run test:e2e -- --env phantomjs
6
npm run test:ssr
7
-if [ -z "$CI_PULL_REQUEST" ]; then
+
8
+# report coverage stats for non-PRs
9
+if [[ -z $CI_PULL_REQUEST ]]; then
10
cat ./coverage/lcov.info | ./node_modules/.bin/codecov
11
+fi
12
13
+# run full browser suites on saucelabs for master branch
14
+if [[ $CIRCLE_BRANCH = master ]]; then
15
npm run test:sauce
16
fi
0 commit comments