diff --git a/.circleci/config.yml b/.circleci/config.yml index c4f1a45..cd0c3ab 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,18 +22,18 @@ jobs: # Download and cache dependencies - restore_cache: keys: - - v1-dependencies-{{ checksum "package.json" }} + - v1-dependencies-{{ checksum "package-lock.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - - run: yarn install + - run: npm ci - save_cache: paths: - node_modules - key: v1-dependencies-{{ checksum "package.json" }} + key: v1-dependencies-{{ checksum "package-lock.json" }} # run tests! - - run: yarn test:coverage + - run: npm run test:coverage