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
| sudo: false
| {%- if os.travis %}
| os:
| {%- for name in os.travis %}
| - {{name}}
| {%- endfor %}
| {%- endif %}
| language: node_js
| node_js:
| {%- for version in versions %}
| - '{{version}}'
| {%- else %}
| - '6'
| - '8'
| {%- endfor %}
| {%- if npminstall %}
| install:
| - npm i npminstall && npminstall
| {%- endif %}
| script:
| - npm run {{command.travis}}
| {%- if afterScript %}
| {{afterScript}}
| {%- endif %}
| {%- if services %}
| services:
| {%- for service in services %}
| - {{service}}
| {%- endfor %}
| {%- endif %}
|
|