From fb4e2787f42cb5a17279c61b476444d8fee87f61 Mon Sep 17 00:00:00 2001 From: Davidson Fellipe Date: Sun, 31 May 2020 20:10:15 -0400 Subject: [PATCH] chore(lint): Add textlint --- .circleci/config.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..8dcc66e --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,17 @@ +version: 2.1 +orbs: + node: circleci/node@1.1.6 +jobs: + build-and-test: + executor: + name: node/default + steps: + - checkout + - node/with-cache: + steps: + - run: yarn + - run: yarn lint +workflows: + build-and-test: + jobs: + - build-and-test