-
Notifications
You must be signed in to change notification settings - Fork 150
Add lint to CI #1518
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
Add lint to CI #1518
Conversation
|
Ok first run failed as expected - second commit should fix the lint failures. |
1 similar comment
package.json
Outdated
| "test-once": "jest tests/ --runInBand", | ||
| "test-coverage-once": "jest tests/ --runInBand --coverage", | ||
| "test-ci": "npm run test-coverage-once && cat ./coverage/lcov.info | coveralls", | ||
| "test-ci": "npm run test-coverage-once && cat ./coverage/lcov.info | coveralls ", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that whitespace at the end expected?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, nope. Thanks for spotting it!
Fixes #1517