summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 758b785d7aef6ff6d0afb650515938554f9bcfbd (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
language: node_js
dist: xenial
cache: yarn

jobs:
  include:
    - stage: Static Tests
      name: eslint
      node_js:
        - 10
      script:
        - yarn run eslint
    - name: ShellCheck
      script:
        - shellcheck bin/heroku bin/setup
      language: generic
    - name: json-lint
      addons:
        apt:
          packages:
          - jq
      script:
        - yarn run jsonlint
      language: generic
    - stage: Dynamic Tests
      name: Node.js 10
      node_js:
        - 10
      script:
        - yarn run mocha-suite
    - name: Node.js 12
      node_js:
        - 12
      script:
        - yarn run mocha-suite