We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42eae25 commit 66f64f1Copy full SHA for 66f64f1
travis.yml.template
@@ -20,6 +20,17 @@ stages:
20
21
jobs:
22
include:
23
+ - stage: Test
24
+ env:
25
+ - TEST: Editor Config check
26
+ language: node_js
27
+ node_js:
28
+ - lts/*
29
+ install:
30
+ - npm i -g eclint
31
+ script:
32
+ - eclint check
33
+
34
- stage: Test
35
env:
36
- TEST: Doc Toc Check
@@ -30,6 +41,14 @@ jobs:
41
doctoc --title='## Table of Contents' --github README.md &&
42
diff -q README.md README.md.tmp
43
44
45
46
+ - TEST: shfmt check
47
48
+ - docker run -it --rm -v "$(pwd)":/sh -w /sh jamesmstone/shfmt -i 2 -l -w -ci .
49
+ - git diff --color
50
+ - git diff --stat=220 --color --exit-code
51
52
53
54
- TEST: Shell Check
0 commit comments