forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
37 lines (30 loc) · 789 Bytes
/
.travis.yml
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
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" # LTS to 2019-06
- "12" # current to 2019-10, LTS to 2022-04
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