diff --git a/.circleci/config.yml b/.circleci/config.yml index 9accdb7..e50824b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,15 +6,16 @@ jobs: image: ubuntu-2004:202010-01 steps: - restore_cache: - keys: + keys: - npm-v1-dependencies-{{ checksum "yarn.lock" }} - npm-v1-dependencies - - checkout - - run: - name: "install step" - command: yarn install --path install/yarn + - run: + name: "yarn install" + command: yarn install --path install - save_cache: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} paths: - - install/yarn + - install/yarn + + \ No newline at end of file