Skip to content

Commit

Permalink
Split run steps for test
Browse files Browse the repository at this point in the history
CircleCIでコードリントとテスト実行処理のステップを分割させる。

これによりCircleCIのUIでの確認がしやすくなることを期待する。
  • Loading branch information
ykzts committed Mar 4, 2017
1 parent eadad78 commit d0f9860
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Expand Up @@ -34,9 +34,12 @@ jobs:
paths:
- ~/.cache/yarn
- ./node_modules
- run:
name: Pre-Test
command: yarn lint
- run:
name: Run Tests
command: yarn test
command: yarn test-only
- run:
name: Post-Test
command: cat ./coverage/lcov.info | $(yarn bin)/coveralls || echo "1"
Expand Down

0 comments on commit d0f9860

Please sign in to comment.