blob: 5ab743d1aaad490fa337f14c3ebbeb06ca805896 (
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
|
language: node_js
dist: xenial
cache: yarn
jobs:
include:
- stage: Static Tests
name: eslint
node_js:
- 10
script:
- yarn run eslint
- name: markdownlint
node_js:
- 10
script:
- yarn run markdownlint
- name: ShellCheck
script:
- shellcheck bin/heroku bin/setup
language: generic
- name: json-lint
node_js:
- 10
addons:
apt:
packages:
- jq
script:
- yarn run jsonlint
- 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
|