Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -535,23 +535,23 @@ jobs:
- run:
name: Install Additional Dependencies
command: |
if [ -n "$CIRCLE_PR_NUMBER" ]; then
yarn add [email protected]
cd bots
yarn install --non-interactive --cache-folder ~/.cache/yarn
else
echo "Skipping dependency installation."
fi
# if [ -n "$CIRCLE_PR_NUMBER" ]; then
yarn add [email protected]
cd bots
yarn install --non-interactive --cache-folder ~/.cache/yarn
# else
# echo "Skipping dependency installation."
# fi
- save-cache: *save-cache-analysis

- run:
name: Analyze Pull Request
command: |
if [ -n "$CIRCLE_PR_NUMBER" ]; then
cd bots && DANGER_GITHUB_API_TOKEN="e622517d9f1136ea8900""07c6373666312cdfaa69" yarn danger
else
echo "Skipping pull request analysis."
fi
# if [ -n "$CIRCLE_PR_NUMBER" ]; then
cd bots && DANGER_GITHUB_API_TOKEN=$DANGER_GITHUB_API_TOKEN yarn danger
# else
# echo "Skipping pull request analysis."
# fi
when: always
- run:
name: Analyze Code
Expand Down