diff --git a/.circleci/config.yml b/.circleci/config.yml index 16d3763..b9cab66 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,6 +6,9 @@ workflows: - lint: requires: - build + - test: + requires: + - build jobs: build: docker: @@ -27,3 +30,11 @@ jobs: - restore_cache: key: yarn-packagesV2-{{ checksum "yarn.lock" }} - run: yarn lint && yarn format:check + test: + docker: + - image: "circleci/node:12" + steps: + - checkout + - restore_cache: + key: yarn-packagesV2-{{ checksum "yarn.lock" }} + - run: yarn test:ci