From 24210f36fa6d22aa0bbc52be47886dd7a2ae0387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Tue, 2 Oct 2018 15:03:24 +0200 Subject: [PATCH] modified: .gitlab-ci.yml --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6d7afe29..18eecb0d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,3 +21,18 @@ other_files: 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 {} + +