diff --git a/.circleci/config.yml b/.circleci/config.yml index a94c6a8..beb9eec 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,8 +21,10 @@ jobs: steps: - checkout # check out the code in the project directory - run: yarn install - - restore_cache: + - save_cache: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + path: + - node_module job2: docker: - image: cimg/node:14.15.0 # the primary container, where your job's commands are run @@ -31,6 +33,8 @@ jobs: password: $PSW_DOCKER # context / project UI env-var reference steps: - checkout + - restore_cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn lint - run: yarn format:check # job3: