Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix CI coverage capturing and reporting #231

Merged
merged 1 commit into from Jan 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .appveyor.yml
Expand Up @@ -21,9 +21,9 @@ test_script:
- npm --version
- yarn --version
- which yarn
- yarn prepare
- yarn lint
- yarn test:ci
- yarn appveyor:prepare
- yarn appveyor:lint
- yarn appveyor:test

cache:
- node_modules -> appveyor.yml,package.json,yarn.lock
3 changes: 3 additions & 0 deletions .editorconfig
Expand Up @@ -8,6 +8,9 @@ trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 233

[*.js]
end_of_line = lf

[*.json]
indent_style = space
indent_size = 2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -15,6 +15,7 @@ yarn-error.log

# Jest Coverage
/coverage
/.nyc_output

# Distribution Build
dist
Expand Down
6 changes: 2 additions & 4 deletions .travis.yml
Expand Up @@ -30,7 +30,5 @@ before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start

after_success:
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"

script: npm run travis:$JOB_PART
script:
- npm run travis:$JOB_PART