From 72ca9cf017e9dd7dc722788bfa0edd0522a1418e Mon Sep 17 00:00:00 2001 From: Phil Pluckthun Date: Fri, 10 Apr 2020 00:11:08 +0100 Subject: [PATCH] Reduce number of CircleCI tasks --- .circleci/config.yml | 30 +++++------------------------- 1 file changed, 5 insertions(+), 25 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fe36b5658c..0ca44c4749 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,17 +30,7 @@ jobs: paths: - ~/.cache/yarn - lint: - executor: node - steps: - - checkout - - *yarn_cache - - *yarn - - run: - name: ESLint - command: yarn run lint - - typescript: + check: executor: node steps: - checkout @@ -49,16 +39,12 @@ jobs: - run: name: TypeScript command: yarn run check - - test: - executor: node - steps: - - checkout - - *yarn_cache - - *yarn - run: name: Unit Tests command: yarn run test --maxWorkers=2 + - run: + name: ESLint + command: yarn run lint build: executor: node @@ -113,13 +99,7 @@ workflows: stable: jobs: - setup - - lint: - requires: - - setup - - typescript: - requires: - - setup - - test: + - check: requires: - setup - build: