From 2dbdc7ff9eedcf998b5550098c68723feabf4c11 Mon Sep 17 00:00:00 2001 From: Galimede Date: Mon, 2 Nov 2020 10:18:45 +0100 Subject: [PATCH] test linter --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index acc4d14..c46f4e4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,3 +12,17 @@ jobs: key: yarn-packages-{{ checksum "yarn.lock" }} paths: - ~/.cache/yarn + check_format: + docker: + - image: cimg/node:14.10.1 + steps: + - checkout + - run : yarn lint && yarn format:check + +workflows: + build_and_test: + jobs: + - build + - check_format: + requires: + - build \ No newline at end of file