From d99e237cba0ac58c575e852913ff78a2aeae6af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GAUTREAU?= Date: Mon, 2 Nov 2020 11:34:50 +0100 Subject: [PATCH] :sparkles: : add test --- .circleci/config.yml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 610db7a..20c1273 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,13 +3,16 @@ version: 2.1 workflows: std: jobs: - - yarn1 + - yarn - lint: requires: - - yarn1 + - yarn + - test: + requires: + - yarn jobs: - yarn1: + yarn: docker: - image: cimg/node:14.10.1 steps: @@ -33,4 +36,14 @@ jobs: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn lint - - run: yarn format:check \ No newline at end of file + - run: yarn format:check + + test: + docker: + - image: cimg/node:14.10.1 + steps: + - checkout + - restore_cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + + - run: yarn test:ci \ No newline at end of file