Temporarily disable Danger in CI (#12291)

This commit is contained in:
Brandon Dail
2018-02-26 11:40:23 -08:00
committed by GitHub
parent 94518b068b
commit 925fc93389

View File

@@ -25,7 +25,9 @@ if [ $((2 % CIRCLE_NODE_TOTAL)) -eq "$CIRCLE_NODE_INDEX" ]; then
COMMANDS_TO_RUN+=('./scripts/circleci/build.sh')
COMMANDS_TO_RUN+=('yarn test-build --maxWorkers=2')
COMMANDS_TO_RUN+=('yarn test-build-prod --maxWorkers=2')
COMMANDS_TO_RUN+=('node ./scripts/tasks/danger')
# The Github API requests danger makes are currently failing. Disabling it
# until we can fix that.
# COMMANDS_TO_RUN+=('node ./scripts/tasks/danger')
COMMANDS_TO_RUN+=('./scripts/circleci/upload_build.sh')
fi