From d565d24ca114370e46d7c88799841707770547c1 Mon Sep 17 00:00:00 2001 From: BryceLTaylor Date: Tue, 2 Feb 2021 11:41:05 -0500 Subject: [PATCH] circleci split setup and lint run steps, use junit output for lint tests --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0ab7b37ec..ddedba9e3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,11 +47,14 @@ aliases: - checkout - *restore_npm_cache - run: - name: "setup and run lint tests" + name: "setup" command: | npm --production=false install mkdir ./test/results - npm run test:lint + - run: + name: "run lint tests" + command: | + npm run test:lint:ci - run: name: "run npm build" command: |