summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 393fba2849d44b5f2ff4d55cae0eb9126f645880 (plain)
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
language: node_js
dist: xenial
cache: yarn
env:
  global:
    - CXX=g++-4.8
    - YARN_VERSION=1.16.0

jobs:
  include:
    - name: Node.js 8
      node_js:
        - 8
      before_install:
        - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
        - export PATH="$HOME/.yarn/bin:$PATH"
      script:
        - yarn run mocha-suite
    - name: Node.js 10
      node_js:
        - 10
      before_install:
        - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
        - export PATH="$HOME/.yarn/bin:$PATH"
      script:
        - yarn run mocha-suite
    - name: Node.js 12
      node_js:
        - 12
      before_install:
        - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version "$YARN_VERSION"
        - export PATH="$HOME/.yarn/bin:$PATH"
      script:
        - yarn run mocha-suite
    - name: eslint
      script:
        - yarn run eslint
      language: generic
    - name: ShellCheck
      script:
        - shellcheck bin/heroku bin/setup
      language: generic
    - name: json-lint
      addons:
        apt:
          packages:
          - jq
      script:
        - yarn run jsonlint
      language: generic