We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c129a71 commit b662515Copy full SHA for b662515
.travis.yml
@@ -1,5 +1,6 @@
1
language: node_js
2
cache:
3
+ yarn: true
4
directories:
5
- ~/.npm
6
notifications:
@@ -8,18 +9,20 @@ node_js:
8
9
- '12'
10
install:
11
- yarn global add codecov
12
+ - yarn install
13
+- script:
14
+ - yarn validate
15
+ - script: codecov
16
17
jobs:
18
include:
- - stage: test
- script: yarn validate
- script: codecov
19
- stage: release
- script: yarn build
20
+ script: skip
21
deploy:
22
provider: script
23
skip_cleanup: true
24
script:
25
+ - yarn build
26
- npx semantic-release
27
on:
28
branch: master
0 commit comments