From ba3f49c828f5120ca8be8f57b00691f8734effc5 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Sat, 23 May 2020 16:54:45 -0400 Subject: [PATCH] fix(repo): reorder CI ci to run most valuable steps first (#3060) --- .circleci/config.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 83fe55a314..a819d257cc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ executors: working_directory: ~/repo environment: # install Cypress in Linux-like cache folder - CYPRESS_CACHE_FOLDER: "~/.cache/Cypress" + CYPRESS_CACHE_FOLDER: '~/.cache/Cypress' docker: - image: circleci/node:12-browsers @@ -77,21 +77,21 @@ jobs: executor: default steps: - setup + - run: + name: Run Unit Tests + command: yarn test:all + - run: + name: Check Documentation + command: yarn documentation + - run: + name: Check Imports + command: yarn checkimports - run: name: Check Formatting command: yarn checkformat - run: name: Check Commit Message Format command: yarn checkcommit - - run: - name: Check Imports - command: yarn checkimports - - run: - name: Check Documentation - command: yarn documentation - - run: - name: Run Unit Tests - command: yarn test:all e2e-nx-1: executor: default steps: