2017-02-15 05:14:58 -05:00
|
|
|
language: node_js
|
2019-05-13 07:27:17 -04:00
|
|
|
dist: xenial
|
2017-03-23 19:22:02 -04:00
|
|
|
cache: yarn
|
2017-09-27 10:26:03 -04:00
|
|
|
|
2017-10-27 15:01:36 -04:00
|
|
|
jobs:
|
|
|
|
include:
|
2019-05-13 08:05:02 -04:00
|
|
|
- stage: Static Tests
|
|
|
|
name: eslint
|
2017-10-27 15:01:36 -04:00
|
|
|
node_js:
|
2019-05-12 04:01:38 -04:00
|
|
|
- 10
|
2019-05-13 07:27:17 -04:00
|
|
|
script:
|
|
|
|
- yarn run eslint
|
2020-06-26 20:28:05 -04:00
|
|
|
- name: markdownlint
|
|
|
|
node_js:
|
|
|
|
- 10
|
|
|
|
script:
|
|
|
|
- yarn run markdownlint
|
2019-05-13 07:27:17 -04:00
|
|
|
- name: ShellCheck
|
2017-10-27 15:01:49 -04:00
|
|
|
script:
|
2018-01-27 16:35:21 -05:00
|
|
|
- shellcheck bin/heroku bin/setup
|
2017-10-27 15:01:49 -04:00
|
|
|
language: generic
|
2019-05-13 07:27:17 -04:00
|
|
|
- name: json-lint
|
2018-02-19 13:01:32 -05:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- jq
|
2017-10-27 15:01:49 -04:00
|
|
|
script:
|
2019-05-13 07:27:17 -04:00
|
|
|
- yarn run jsonlint
|
2017-10-27 15:01:49 -04:00
|
|
|
language: generic
|
2019-05-13 08:05:02 -04:00
|
|
|
- stage: Dynamic Tests
|
2020-02-16 17:33:57 -05:00
|
|
|
name: Node.js 10
|
2019-05-13 08:05:02 -04:00
|
|
|
node_js:
|
|
|
|
- 10
|
|
|
|
script:
|
|
|
|
- yarn run mocha-suite
|
|
|
|
- name: Node.js 12
|
|
|
|
node_js:
|
|
|
|
- 12
|
|
|
|
script:
|
|
|
|
- yarn run mocha-suite
|