File tree Expand file tree Collapse file tree 1 file changed +38
-26
lines changed Expand file tree Collapse file tree 1 file changed +38
-26
lines changed Original file line number Diff line number Diff line change @@ -13,30 +13,42 @@ addons:
1313 packages :
1414 - docker-ce
1515
16- script :
17- - if [ "true" = "${SHELLCHECK-}" ]; then shellcheck *.sh ; fi
18- - if [ -n "${NODE_VERSION-}" ]; then ./test-build.sh $NODE_VERSION ; fi
19- - if [ "true" = "${DOCTOCCHECK-}" ]; then
20- npm i -g doctoc &&
21- cp README.md README.md.tmp &&
22- doctoc --title='## Table of Contents' --github README.md &&
23- diff -q README.md README.md.tmp;
24- fi
25-
26- env :
27- - DOCTOCCHECK : true
28- - NODE_VERSION : ' 4'
29- - NODE_VERSION : ' 6'
30- - NODE_VERSION : ' 8'
31- - NODE_VERSION : ' 9'
32- - NODE_VERSION : ' chakracore/8'
33-
34- matrix :
16+ script : ./test-build.sh $NODE_VERSION
17+
18+ jobs :
3519 include :
36- env : SHELLCHECK=true
37- addons :
38- apt :
39- sources :
40- - debian-sid
41- packages :
42- - shellcheck
20+ - stage : Doc TOC Check
21+ install : npm i -g doctoc
22+ script :
23+ - cp README.md README.md.tmp &&
24+ doctoc --title='## Table of Contents' --github README.md &&
25+ diff -q README.md README.md.tmp
26+
27+ - stage : Shell Check
28+ script : shellcheck *.sh
29+ addons :
30+ apt :
31+ sources :
32+ - debian-sid
33+ packages :
34+ - shellcheck
35+
36+ - stage : Build
37+ env :
38+ - NODE_VERSION : ' 4'
39+
40+ - stage : Build
41+ env :
42+ - NODE_VERSION : ' 6'
43+
44+ - stage : Build
45+ env :
46+ - NODE_VERSION : ' 8'
47+
48+ - stage : Build
49+ env :
50+ - NODE_VERSION : ' 9'
51+
52+ - stage : Build
53+ env :
54+ - NODE_VERSION : ' chakracore/8'
You can’t perform that action at this time.
0 commit comments