Skip to content

Commit c842e2f

Browse files
committed
fix: properly build before releasing
1 parent 428e99e commit c842e2f

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ install:
3030
- npm install
3131

3232
script:
33-
- npm run build --silent
34-
- npm run lint --silent
35-
- npm run cover --silent
33+
- npm run build
34+
- npm run lint
35+
- npm run cover
3636

3737
after_success:
3838
- 'nyc report --reporter=lcov > coverage.lcov && bash <(curl -s https://codecov.io/bash) -f coverage/lcov.info'
@@ -47,7 +47,8 @@ jobs:
4747
- git config --replace-all remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
4848
- git fetch --tags
4949
- npm install
50-
script: skip
50+
script:
51+
- npm run build
5152
after_success:
5253
- npm run semantic-release
5354

0 commit comments

Comments
 (0)