File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,19 @@ before_install:
25
25
- npm set progress false
26
26
27
27
install :
28
+ - pip install yamllint
28
29
- if ! shellcheck --version ; then
29
30
curl -sSL "${SHELLCHECK_URL}" | tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xjf -;
30
31
fi
31
32
- shellcheck --version
32
33
- npm install -g yarn
34
+ - npm install -g jsonlint
33
35
34
36
script :
37
+ - find . -type f -name "*.yml" -print0 | xargs -0 -n1 yamllint
38
+ - find . -type f -name "*.json" -print0 | xargs -0 -n1 jsonlint -c -q
35
39
- gpg --verify ./bin/install.sh.sig
36
40
- shellcheck ./bin/install.sh
37
- - composer self-update || true
38
41
- composer validate
39
42
- composer install --no-progress --no-suggest
40
43
- yarn install --no-progress
You can’t perform that action at this time.
0 commit comments