From bd2b1b3614d03fb6f807344b64ab33e19b3bc002 Mon Sep 17 00:00:00 2001 From: MTLantoine Date: Tue, 3 Nov 2020 18:22:26 +0100 Subject: [PATCH] 3 jobs --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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