From 8365efa1e8b10410205ab5ea071b5c692d3c8d59 Mon Sep 17 00:00:00 2001 From: Galimede Date: Mon, 2 Nov 2020 11:16:40 +0100 Subject: [PATCH] add test for ci --- .circleci/config.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4add9fd..def4126 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,11 +20,21 @@ jobs: - restore_cache: key: yarn-packages-v2{{ checksum "yarn.lock" }} - run : yarn lint && yarn format:check - + test: + docker: + - image: cimg/node:14.10.1 + steps: + - checkout + - restore_cache: + key: yarn-packages-v2{{ checksum "yarn.lock" }} + - run : yarn test:ci workflows: build_and_test: jobs: - build - check_format: requires: + - build + - test: + requires: - build \ No newline at end of file