forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (29 loc) · 729 Bytes
/
.travis.yml
File metadata and controls
36 lines (29 loc) · 729 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
language: node_js
node_js:
# - 0.6 # no longer supported by async
# - 0.8 # no longer supported by iconv
# - 0.10 # no longer maintained by node.js (2016-10-31)
# - 0.12 # maint. ended 2016-12-31
# - 4 # maint. ended 2018-04
- "6" # maint. ends 2019-04
- "8" # maint. ends 2020-01
- "10" # active until 2020-04
- "11" # current
matrix:
fast_finish: true
allow_failures:
# - node_js: "8"
services:
- redis-server
before_script:
script:
- npm run lint
- npm test
after_success:
- npm install istanbul codecov
- npm run cover
- ./node_modules/.bin/codecov
sudo: false
cache:
directories:
- node_modules