From e28915d23641860ff1dd55ae062ab9a31256e5c9 Mon Sep 17 00:00:00 2001 From: Julien Dudek Date: Mon, 2 Nov 2020 11:32:12 +0100 Subject: [PATCH] feat: ajout test --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) 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