diff options
-rw-r--r-- | circle.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/circle.yml b/circle.yml index 035b2e155..c22d03b08 100644 --- a/circle.yml +++ b/circle.yml @@ -2,12 +2,14 @@ machine: node: version: 6.5.0 environment: + YARN_VERSION: 0.28.4 CONTRACTS_COMMIT_HASH: '78fe8dd' PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" dependencies: override: - - yarn + - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION + - yarn install --pure-lockfile cache_directories: - ~/.cache/yarn |