This repository was archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 272
[monorepo] add travis + codecov ✅ #2
Merged
Merged
Changes from 16 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
08a1758
[monorepo] initial attempt at travis
williaster b238f45
[monorepo] coveralls => codecov
williaster 9edbc36
[monorepo] don't lerna bootstrap?
williaster dcb8ac2
[monorepo] ignore lock files, add lint:fix script
williaster 5487466
[core] add node-fetch dev dep
williaster 0e569cc
[monorepo] tweak codecov call
williaster 93e95e5
[monorepo] tweak codecov call take ii
williaster 6f6ee96
[monorepo] codecov again
williaster e893b55
[core][deps] build-config@^0.0.11
williaster dcb95db
[core][jest] add <rootDir> to coveragePathIgnorePatterns paths
williaster 2e71e12
[core][jest] add collectCoverageFrom config
williaster d11698e
[core][jest] try adding rootDir to collectCoverageFrom glob
williaster 9cc8b7d
[core][deps] [email protected]
williaster 5774d47
[travis] yolo
williaster 207f356
[travis] this is the one
williaster 39c705f
[travis] install global codecov
williaster f1ff034
[travis] no quotes in yml
williaster 00211cc
[travis] no quotes in yml part 2
williaster File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,6 @@ jest.config.js | |
lib/ | ||
logs/ | ||
node_modules/ | ||
package-lock.json | ||
prettier.config.js | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- '10.7' | ||
|
||
cache: | ||
directories: | ||
- node_modules | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
install: | ||
- npm install | ||
- npm install -g codecov | ||
|
||
env: | ||
- PACKAGE=superset-ui-core | ||
|
||
script: | ||
- 'cd ./packages/$PACKAGE && yarn install && yarn run lint && yarn run test' | ||
|
||
after_script: | ||
- 'codecov' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nix the quotes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @john-bodley for all scripts? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Nix the quotes here too.