We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b5d6a6 commit 88fef20Copy full SHA for 88fef20
.travis.yml
@@ -1,8 +1,5 @@
1
language: node_js
2
3
-install:
4
- - yarn
5
-
6
cache: yarn
7
8
node_js:
@@ -18,24 +15,20 @@ stages:
18
15
19
16
jobs:
20
17
include:
21
- - stage: test
22
- install:
23
- - yarn install
24
- script:
25
- - yarn test:prod
+ - stage: install
+ script: yarn install
+ skip_cleanup: true
+
+ - stage: test
+ script: yarn test:prod
26
27
- stage: build
28
29
30
31
- - yarn build
+ script: yarn build
32
33
- stage: release
34
- # Advanced: optionally overwrite your default `script` step to skip the tests
35
- # script: skip
36
deploy:
37
provider: script
38
skip_cleanup: true
39
script:
40
41
- yarn semantic-release
0 commit comments