Skip to content

Commit 13d1baa

Browse files
committed
fix(travis): should generate library
1 parent 9d30808 commit 13d1baa

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ node_js:
1010
script:
1111
- yarn lint
1212
- yarn global add codecov -g
13+
- yarn build
1314
- yarn test
1415
- codecov -f coverage/*.json
1516
after_success:

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ function validateConfigurationObject(config: IFetchReadmeConfig) {
7474
*/
7575
const fetchReadme = async (config: IFetchReadmeConfig) => {
7676
try {
77+
// Check configuration before proceeding
7778
validateConfigurationObject(config)
7879
return await getGithubReadmeForRepository(config)
7980
} catch (error) {

0 commit comments

Comments
 (0)