HackMD/.travis.yml

41 lines
740 B
YAML
Raw Permalink Normal View History

2017-02-15 10:14:58 +00:00
language: node_js
dist: xenial
cache: yarn
2017-09-27 14:26:03 +00:00
2017-10-27 19:01:36 +00:00
jobs:
include:
- stage: Static Tests
name: eslint
2017-10-27 19:01:36 +00:00
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 8
node_js:
- 8
script:
- yarn run mocha-suite
- name: Node.js 10
node_js:
- 10
script:
- yarn run mocha-suite
- name: Node.js 12
node_js:
- 12
script:
- yarn run mocha-suite