forked from arjunkomath/node-freshdesk-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
63 lines (48 loc) · 1.92 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Node wrapper for Freshdesk v2 API
# Copyright (C) 2016-2017 Maksim Koryukov <maxkoryukov@gmail.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the MIT License, attached to this software package.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# You should have received a copy of the MIT License along with this
# program. If not, see <https://opensource.org/licenses/MIT>.
# http://spdx.org/licenses/MIT
sudo: false
language: node_js
node_js:
- 4
- 6
- 7
matrix:
allow_failures:
- node_js: 7 # unstable upstream
cache:
directories:
- node_modules
before_install:
- npm config set spin false
# update NPM:
- npm install -g npm
- npm --version
- node --version
install:
- npm install
- npm install -g codecov
# - npm install -g bithound
script:
- npm run lint
- npm test
- npm run coverage
# - bithound check git@github.com:$TRAVIS_REPO_SLUG.git
after_success:
- codecov
deploy:
provider: npm
email: arjunkomath@gmail.com
api_key:
secure: lHakSy4Yyw+NLJ7jh7pO4XlO7lc6h4srhZwLWTMX++Jw9ldnwbU60Abu2d9gBcOfX52GUmI6wT5mw5UUkHEUdKg8PPvzzzDUGZHxkGqMHsEa2a967pL150fpIDK2FT6t8CT+fZW+TH3+jAPBg7posV7FSAz+7is9DZDqhN7uflSzTL2TMXy/UUMX0QP0rjwfVL5g+qoNOnniB+Uap2VfhWfzvXB/g+fVDHv+ZxGo9KAawhDXPPnmRc9cRR1UOYNBh9txe64qgmWtqvHDYblDfRUPIWeqI1QT2pGh47WJ6sEWBXnxiFQuWR3nQ8FAywBPgPi8iyW5Orjm3WfmChvfAEA4M+YF+6S7sZhLkFaGET6PPj3jV+cpD1MwsocLcyPtTwkq2aJEk0MLgCN7EuB4aLAzqDDuPovLrbkARyu76OT+QD8QyeQbGbBfOUupTheObY9zuXm6CKifSVOtxR/WUwToWZ9dGRth0rSTt6Tg1PeZahaUIR1oby98fuK1ReIkKTxW8H4pnoJP9di5mN4EMlx6zxPGc79R/sBZ5Ml4CAerZf2IXXU0BPGno49VpKGvztK3Jf1p3szoiJaxYYBRGy8syuvDq5IEkCSybLIQl6SUuT/NfzJq8OSEYCmd4zO+dUPhz5ufUtLhX9p+wmb/+3eVUGIyUNXbZT1IMb9O0I8=
on:
tags: true
node_js: 4
repo: arjunkomath/node-freshdesk-api