From aec2f33cc8af253659fc8bcf988cbf5e285e4d74 Mon Sep 17 00:00:00 2001 From: Zelleg Date: Mon, 11 Oct 2021 10:51:23 +0200 Subject: [PATCH] update same file --- .circleci/config.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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