-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[monorepo] add travis + codecov ✅ (#3)
* [monorepo] initial attempt at travis * [monorepo] coveralls => codecov * [monorepo] don't lerna bootstrap? * [monorepo] ignore lock files, add lint:fix script * [core] add node-fetch dev dep * [monorepo] tweak codecov call * [monorepo] tweak codecov call take ii * [monorepo] codecov again * [core][deps] build-config@^0.0.11 * [core][jest] add <rootDir> to coveragePathIgnorePatterns paths * [core][jest] add collectCoverageFrom config * [core][jest] try adding rootDir to collectCoverageFrom glob * [core][deps] [email protected] * [travis] yolo * [travis] this is the one * [travis] install global codecov * [travis] no quotes in yml * [travis] no quotes in yml part 2
- Loading branch information
1 parent
c4b946f
commit 39677af
Showing
4 changed files
with
36 additions
and
8 deletions.
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 |
27 changes: 27 additions & 0 deletions
27
superset-frontend/temporary_superset_ui/superset-ui/.travis.yml
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,27 @@ | ||
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 |
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