forked from melonjs/melonJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (23 loc) · 665 Bytes
/
Copy path.travis.yml
File metadata and controls
32 lines (23 loc) · 665 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
dist: trusty
sudo: required
language: node_js
cache : npm
node_js:
- 12
addons:
chrome: stable # have Travis install chrome stable.
install:
- npm install
before_script:
- "curl -sL https://raw.githubusercontent.com/travis-ci/artifacts/master/install | bash"
script:
- npm run test
after_success:
- "./scripts/travis-upload.sh"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/9f467aab5ea40801389a
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always