diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-27 17:33:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-27 17:33:02 +0800 |
commit | cb7660fbe70db233579104fbf5845181232c83ec (patch) | |
tree | 5954426469514c543a446887ffe7167b31338ff5 | |
parent | 82e51b878780a8d1001470c5408db0bbea53b59e (diff) | |
parent | a551d0a6ddbc25f53612702ec7c6fa6ff2ca3aba (diff) | |
download | dexon-sol-tools-cb7660fbe70db233579104fbf5845181232c83ec.tar dexon-sol-tools-cb7660fbe70db233579104fbf5845181232c83ec.tar.gz dexon-sol-tools-cb7660fbe70db233579104fbf5845181232c83ec.tar.bz2 dexon-sol-tools-cb7660fbe70db233579104fbf5845181232c83ec.tar.lz dexon-sol-tools-cb7660fbe70db233579104fbf5845181232c83ec.tar.xz dexon-sol-tools-cb7660fbe70db233579104fbf5845181232c83ec.tar.zst dexon-sol-tools-cb7660fbe70db233579104fbf5845181232c83ec.zip |
Merge pull request #1009 from 0xProject/fix/ci-yarn-1.9.4
fix: Use yarn version 1.9.4 on CI
-rw-r--r-- | .circleci/config.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 0d3c2f108..2f139841b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,8 +18,8 @@ jobs: - yarn-packages-master - yarn-packages- - run: - name: yarn - command: yarn --frozen-lockfile install || true + name: install-yarn + command: sudo npm install --global yarn@1.9.4 - run: name: yarn command: yarn --frozen-lockfile install @@ -254,4 +254,4 @@ workflows: - build - submit-coverage: requires: - - test-rest
\ No newline at end of file + - test-rest |