diff options
author | kumavis <aaron@kumavis.me> | 2018-03-10 06:01:42 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-03-10 06:01:42 +0800 |
commit | 9378bc50d24fc6bcb90d9f9c5aef2d4dddd433d2 (patch) | |
tree | 238a3551aab5a1c5061adae69af146a17c7cfa8e /.circleci | |
parent | dab47e5bfaa306a2fbdd4fe8a97b41715478d8b6 (diff) | |
download | tangerine-wallet-browser-9378bc50d24fc6bcb90d9f9c5aef2d4dddd433d2.tar.gz tangerine-wallet-browser-9378bc50d24fc6bcb90d9f9c5aef2d4dddd433d2.tar.zst tangerine-wallet-browser-9378bc50d24fc6bcb90d9f9c5aef2d4dddd433d2.zip |
ci - optimize - dont update npm
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 53a769c43..8e194d446 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,13 +29,10 @@ jobs: - image: circleci/node:8-browsers steps: - checkout - - run: - name: Update npm - command: 'sudo npm install -g npm@latest' - restore_cache: key: dependency-cache-{{ checksum "package-lock.json" }} - run: - name: Install npm + name: Install deps via npm command: npm install - save_cache: key: dependency-cache-{{ checksum "package-lock.json" }} |