forked from careerfairsystems/nexpo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
31 lines (31 loc) · 786 Bytes
/
.travis.yml
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
language: elixir
cache: false
matrix:
include:
- node_js: 11.9.0
before_install:
- nvm install 11.9.0
- npm i -g npm
- npm i -g codecov
install:
- cd priv/react_app && npm install
script:
- npm run build
- npm run test-coverage
after_success:
- codecov
- elixir: 1.8.2
otp_release: 22.0.7
before_install:
- gem install fakes3
- fakes3 -r $HOME/.s3bucket -p 4567 --license 9806002125 &
install:
- mix local.rebar --force
- mix local.hex --force
- mix deps.get
script:
- npm run test-coverage-backend
after_success:
- bash <(curl -s https://codecov.io/bash)
after_script:
- kill $(pgrep -f fakes3)