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:
2525 - npm set progress false
2626
2727install :
28+ - pip install yamllint
2829 - if ! shellcheck --version ; then
2930 curl -sSL "${SHELLCHECK_URL}" | tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xjf -;
3031 fi
3132 - shellcheck --version
3233 - npm install -g yarn
34+ - npm install -g jsonlint
3335
3436script :
37+ - find . -type f -name "*.yml" -print0 | xargs -0 -n1 yamllint
38+ - find . -type f -name "*.json" -print0 | xargs -0 -n1 jsonlint -c -q
3539 - gpg --verify ./bin/install.sh.sig
3640 - shellcheck ./bin/install.sh
37- - composer self-update || true
3841 - composer validate
3942 - composer install --no-progress --no-suggest
4043 - yarn install --no-progress
You can’t perform that action at this time.
0 commit comments