From 925fc93389a9d836a037c1948da7dd6cbb860b84 Mon Sep 17 00:00:00 2001 From: Brandon Dail Date: Mon, 26 Feb 2018 11:40:23 -0800 Subject: [PATCH] Temporarily disable Danger in CI (#12291) --- scripts/circleci/test_entry_point.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/circleci/test_entry_point.sh b/scripts/circleci/test_entry_point.sh index 249b09142c..9b793976f2 100755 --- a/scripts/circleci/test_entry_point.sh +++ b/scripts/circleci/test_entry_point.sh @@ -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