Browse Source

ci(travis): quote pathspecs used with `git ls-files` [skip ci]

* Automated using https://github.com/myii/ssf-formula/pull/107
tags/v1.2.3
Imran Iqbal 5 years ago
parent
commit
0090c91b60
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .travis.yml

+ 2
- 2
.travis.yml View File

script: script:
# Install and run `salt-lint` # Install and run `salt-lint`
- pip install --user salt-lint - pip install --user salt-lint
- git ls-files -- *.sls *.jinja *.j2 *.tmpl *.tst
- git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
| xargs salt-lint | xargs salt-lint
# Install and run `yamllint` # Install and run `yamllint`
# Need at least `v1.17.0` for the `yaml-files` setting # Need at least `v1.17.0` for the `yaml-files` setting
- yamllint -s . - yamllint -s .
# Run `shellcheck` (already pre-installed in Travis) # Run `shellcheck` (already pre-installed in Travis)
- shellcheck --version - shellcheck --version
- git ls-files -- *.sh *.bash *.ksh
- git ls-files -- '*.sh' '*.bash' '*.ksh'
| xargs shellcheck | xargs shellcheck
# Install and run `commitlint` # Install and run `commitlint`
- npm i -D @commitlint/config-conventional - npm i -D @commitlint/config-conventional

Loading…
Cancel
Save