Skip to content

Commit

Permalink
ci: use node.js markdownlint
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardosm committed Apr 15, 2024
1 parent 3d8facf commit 7f4a45f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/install-lint-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends shellcheck

sudo gem install mdl
sudo npm install -g markdownlint-cli
2 changes: 1 addition & 1 deletion ci/lint-aux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ echo "Checking shell scripts with shellcheck"
find . -type f -name "*.sh" -not -path "./.git/*" -print0 | xargs -0 shellcheck

echo "Checking markdown documents with markdownlint"
find . -type f -name "*.md" -not -path "./.git/*" -print0 | xargs -0 mdl
find . -type f -name "*.md" -not -path "./.git/*" -print0 | xargs -0 markdownlint

0 comments on commit 7f4a45f

Please sign in to comment.