Skip to content

Commit

Permalink
make both lint runs always run so circle can track test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkrives committed Sep 22, 2018
1 parent 8719a34 commit 3679d7c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,14 @@ jobs:
- checkout
- attach_workspace: *attach-workspace-node_modules
- run: mkdir -p test-results/eslint/
- run: yarn run --silent lint
- run: yarn run --silent lint --format junit > test-results/eslint/junit.xml
- run:
name: yarn run lint
command: yarn run --silent lint
when: always
- run:
name: yarn run lint --junit
command: yarn run --silent lint --format junit > test-results/eslint/junit.xml
when: always
- store_test_results:
path: ./test-results

Expand Down

0 comments on commit 3679d7c

Please sign in to comment.