diff --git a/.circleci/config.yml b/.circleci/config.yml index b55f5e0..6ab8ce7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,22 +25,22 @@ jobs: key: yarn-packages-v2{{ checksum "yarn.lock" }} paths: - ./node_modules - test: + lint: docker: - image: cimg/node:12.18 - steps: + steps: - checkout - restore_cache: key: yarn-packages-v2{{ checksum "yarn.lock" }} - - run : yarn test:ci - lint: + - run: yarn lint && yarn format:check + test: docker: - image: cimg/node:12.18 - steps: + steps: - checkout - restore_cache: key: yarn-packages-v2{{ checksum "yarn.lock" }} - - run: yarn lint && yarn format:check + - run : yarn test:ci e2e: docker: - image: cimg/node:12.18