-
-
Notifications
You must be signed in to change notification settings - Fork 529
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (36 loc) · 648 Bytes
/
.travis.yml
File metadata and controls
40 lines (36 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
language: node_js
cache:
directories:
- node_modules
node_js:
- 12
notifications:
email:
recipients:
- aron.helser@kitware.com
on_success: change
on_failure: always
install:
- yarn
script:
- yarn build
- git config --global user.name "Travis CI"
- git config --global user.email "aron.helser@kitware.com"
- cd example
- yarn
- yarn build
- cd ..
- commitlint-travis
after_success:
- yarn semantic-release
deploy:
provider: pages
local_dir: example/build
skip_cleanup: true
token: $GH_TOKEN
keep_history: true
on:
branch: master
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"