circleci split setup and lint run steps, use junit output for lint tests

This commit is contained in:
BryceLTaylor 2021-02-02 11:41:05 -05:00
parent 9f82c7ca7c
commit d565d24ca1

View file

@ -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: |