diff --git a/.circleci/config.yml b/.circleci/config.yml index 63fa42b..d8d318d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,9 @@ jobs: - restore_cache: keys: - npm-v1-dependencies-{{ checksum "yarn.lock" }} - - checkout - - run: - name: "Testing" - command: yarn install \ No newline at end of file + - npm-v1-dependencies + - run: yarn install --path "install" + - save_cache: + paths: + - "install" + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} \ No newline at end of file