Skip to content

Commit

Permalink
Fix wrong variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
grabbou committed Oct 13, 2017
1 parent 19837d0 commit b97f1be
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,6 @@ jobs:
npm test -- --maxWorkers=2
npm run lint
npm run flow -- check
# eslint - doesn't run on non-PR builds
- run:
name: Analyze Code
command: |
if [ "$CIRCLE_PR_NUMBER" ]; then
npm install [email protected]
cat <(echo eslint; npm run lint --silent -- --format=json; echo flow; npm run flow --silent -- check --json) | GITHUB_TOKEN="af6ef0d15709bc91d""06a6217a5a826a226fb57b7" CI_USER=$CIRCLE_PROJECT_USERNAME CI_REPO=$CIRCLE_PROJECT_REPONAME PULL_REQUEST_NUMBER=$CIRCLE_PR_NUMBER node bots/code-analysis-bot.js
else
echo "Skipping code analysis."
fi
test-node-6:
<<: *defaults
Expand Down Expand Up @@ -180,7 +170,7 @@ jobs:
- checkout
- run: *install_node_dependencies
- run: |
if [ "$CIRCLE_PR_NUMBER" ]; then
if [ "$CI_PULL_REQUEST" ]; then
gem install cocoapods && ./scripts/process-podspecs.sh
else
echo "Skipping testing podspec."
Expand Down

0 comments on commit b97f1be

Please sign in to comment.