diff --git a/.circleci/config.yml b/.circleci/config.yml index ead6377..7993197 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,11 +58,24 @@ jobs: - npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn lint && yarn format:check + test: + docker: *docker + + steps: + - checkout + - restore_cache: + keys: + - npm-v1-dependencies-{{ checksum "yarn.lock" }} + - run: yarn test:ci + workflows: version: 2 build-and-test: jobs: - build - lint: + requires: + - build + - test: requires: - build \ No newline at end of file