diff --git a/.circleci/config.yml b/.circleci/config.yml index 2b9e556..9d5e4d6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,6 +15,8 @@ jobs: - ~/.stack - restore_cache: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + test: + steps: - run: name: Lint command: yarn lint @@ -23,4 +25,11 @@ jobs: command: yarn format:check - run: name: yarn test ci - command: yarn test + command: yarn test + +workflows: + version: 2 + build_and_test: + jobs: + - build + - test