forked from ibi-group/datatools-ui
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (30 loc) · 767 Bytes
/
.travis.yml
File metadata and controls
32 lines (30 loc) · 767 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
language: node_js
notifications:
email: false
slack: conveyal:WQxmWiu8PdmujwLw4ziW72Gc
node_js:
- '8'
cache:
yarn: true
before_install:
- npm i -g codecov
# Use updated python to avoid SSL insecure warnings:
# https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
- python --version
- pyenv versions
- pyenv global 2.7.14
- pip install --user mkdocs
script:
- yarn run lint
- yarn run lint-messages
- yarn run flow
- yarn run cover-client
- codecov
- yarn run build -- --minify
- mkdocs build
# If sudo is disabled, CI runs on container based infrastructure (allows caching &c.)
sudo: false
# Push results to codecov.io
after_success:
- bash <(curl -s https://codecov.io/bash)
- yarn run semantic-release