easyconfigs-it4i/.gitlab-ci.yml
2018-10-02 15:03:24 +02:00

39 lines
1.0 KiB
YAML

stages:
- test
docs:
stage: test
image: davidhrbac/docker-mdcheck:latest
script:
- mdl -r ~MD013 *.md
big_files:
stage: test
image: davidhrbac/docker-mdcheck:latest
script:
- find . -type f -not -path "*.git*" -size +10M
- find . -type f -not -path "*.git*" -size +10M -exec false {} +
other_files:
stage: test
image: davidhrbac/docker-mdcheck:latest
script:
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" ! -name "*.sh"
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" ! -name "*.sh" -exec false {} +
spell_check:
tage: test
image: davidhrbac/docker-npmcheck:latest
script:
- npm i markdown-spellcheck -g
- mdspell '*.md' -rns --en-us
shellcheck:
stage: test
image: davidhrbac/docker-shellcheck:latest
script:
- which shellcheck || apt-get update && apt-get install -y shellcheck
- find . -name *.sh -not -path "*.git*" -exec shellcheck {} +