From 75bc9422b8093d481b694c64d6155eaa54e60920 Mon Sep 17 00:00:00 2001 From: Brian Ng Date: Mon, 9 Apr 2018 22:08:03 -0500 Subject: [PATCH] Use yarn provided by circle --- .circleci/config.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 79b85e29f5..e3025a3fb2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,11 +18,6 @@ aliases: - ~/.yarn-cache key: v1-yarn-cache - - &yarn-install - run: | - sudo npm i -g yarn@^1.5.1 - yarn --version - - &artifact_babel path: ~/babel/packages/babel-standalone/babel.js @@ -44,7 +39,7 @@ jobs: - checkout - restore-cache: *restore-yarn-cache - restore-cache: *restore-node-modules-cache - - *yarn-install + - run: yarn --version - run: make test-ci-coverage # Builds babel-standalone with the regular Babel config - run: make build @@ -58,4 +53,4 @@ jobs: - store_artifacts: *artifact_env - store_artifacts: *artifact_env_min - save_cache: *save-node-modules-cache - - save_cache: *save-yarn-cache \ No newline at end of file + - save_cache: *save-yarn-cache