-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (28 loc) · 813 Bytes
/
.travis.yml
File metadata and controls
28 lines (28 loc) · 813 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
sudo: false
language: elixir
elixir:
- 1.4.2
otp_release:
- 19.0
env:
- TRAVIS_NODE_VERSION="7"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- npm install -g yarn
- yarn
script:
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix compile
- yarn build
- mix test
- yarn test
- yarn test-app
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fbd8944d285c0696dc41
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always