2017-02-15 10:14:58 +00:00
|
|
|
language: node_js
|
2019-05-13 11:27:17 +00:00
|
|
|
dist: xenial
|
2017-03-23 23:22:02 +00:00
|
|
|
cache: yarn
|
2017-09-27 14:26:03 +00:00
|
|
|
|
2017-10-27 19:01:36 +00:00
|
|
|
jobs:
|
|
|
|
include:
|
2019-05-13 12:05:02 +00:00
|
|
|
- stage: Static Tests
|
|
|
|
name: eslint
|
2017-10-27 19:01:36 +00:00
|
|
|
node_js:
|
2019-05-12 08:01:38 +00:00
|
|
|
- 10
|
2019-05-13 11:27:17 +00:00
|
|
|
script:
|
|
|
|
- yarn run eslint
|
|
|
|
- name: ShellCheck
|
2017-10-27 19:01:49 +00:00
|
|
|
script:
|
2018-01-27 21:35:21 +00:00
|
|
|
- shellcheck bin/heroku bin/setup
|
2017-10-27 19:01:49 +00:00
|
|
|
language: generic
|
2019-05-13 11:27:17 +00:00
|
|
|
- name: json-lint
|
2018-02-19 18:01:32 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- jq
|
2017-10-27 19:01:49 +00:00
|
|
|
script:
|
2019-05-13 11:27:17 +00:00
|
|
|
- yarn run jsonlint
|
2017-10-27 19:01:49 +00:00
|
|
|
language: generic
|
2019-05-13 12:05:02 +00:00
|
|
|
- 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
|