aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: d7183d162a656b004ac479203b1138acb0d170d1 (plain) (blame)
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
language: node_js

node_js:
    - "iojs"
    - "8"
    - "7"
    - "6"
    - "5"
    - "4"

os:
    - linux
    - osx

notifications:
    email:
        - "info@valentineus.link"

before_install:
    - npm install --global nyc
    - npm install --global codacy-coverage

install:
    - npm install --only=production
    - npm install --only=development

script:
    - npm run check
    - nyc npm run test
    - nyc report --reporter=lcov

after_success:
    - nyc report --reporter=lcov
    - cat ./coverage/lcov.info | codacy-coverage

jobs:
    include:
        - stage: deploy
          node_js: "8"
          os: "linux"
          before_deploy:
              - npm run build
          deploy:
              provider: npm
              skip_cleanup: true
              email: "info@valentineus.link"
              api_key: $NPM_PROJECT_TOKEN