-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.travis.yml
More file actions
59 lines (35 loc) · 755 Bytes
/
.travis.yml
File metadata and controls
59 lines (35 loc) · 755 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
language: node_js
node_js:
- "node"
- "8"
- "6"
#- "4"
#- "0.12"
#- "0.11"
#- "0.10"
sudo: false
git:
submodules: false
# addons:
# apt:
# sources:
# - debian-sid # Grab ShellCheck from the Debian repo
# packages:
# - shellcheck
# env:
# - TEST_DIR=example/nodejs/
before_script:
# Prepare for automated tests
- make install
script:
# Run tests
- make check test
notifications:
irc: "irc.freenode.org#dbwebb"
webhooks:
urls:
- https://webhooks.gitter.im/e/eeddc70678354af6584f
# options: [always|never|change] default: always
on_success: change
on_failure: always
on_start: never