From 3adf423d60077ee51a92e07c48028567285d1c2b Mon Sep 17 00:00:00 2001 From: Nicolas Beaussart Date: Wed, 5 Feb 2020 21:13:55 +0100 Subject: [PATCH] :boom: add new cli system --- .circleci/config.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7cb42fb..c1330e9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,6 +26,14 @@ jobs: <<: *test docker: - image: node:10 + prettier: + <<: *test + steps: + - checkout + - *yarn_install + - run: + name: Check prettier + command: yarn format:check cache: <<: *test steps: @@ -54,6 +62,7 @@ workflows: - node-latest - node-12 - node-10 + - prettier - cache: filters: tags: @@ -65,6 +74,7 @@ workflows: - node-latest - node-12 - node-10 + - prettier filter: branches: only: master