Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: remove unnecessary Yarn download #11684

Merged
merged 1 commit into from
Nov 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 0 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs:

environment:
TZ: /usr/share/zoneinfo/America/Los_Angeles
YARN_VERSION: 1.2.1
TRAVIS_REPO_SLUG: facebook/react

parallelism: 4
Expand All @@ -17,13 +16,6 @@ jobs:

- run: echo $CIRCLE_COMPARE_URL | cut -d/ -f7

- run:
name: Install Yarn
command: |
if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION
fi

- restore_cache:
name: Restore node_modules cache
keys:
Expand Down