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
| language: node_js
|
| node_js:
| - "0.10"
| - "0.12"
| - "4"
| - "5"
| - "6"
|
| sudo: false
|
| script:
| - "npm test"
|
| notifications:
| irc:
| channels:
| - "irc.freenode.org#sailsjs"
| on_success: never
| on_failure: always
| template:
| - "Build by %{author} has failed:"
| - "Git Info: %{branch} - %{commit}"
| - "Travis states: %{message}"
| - "Build Details: %{build_url}"
| - "Change View: %{compare_url}"
| skip_join: true
|
| # whitelisted branches
| branches:
| only:
| - master
| - stable
| - 0.12
| - beta
|
|