Drupal module template #90
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Do not edit this file! Make a pull request on changing | |
# github/workflows/markdown.yaml in | |
# https://github.com/itk-dev/devops_itkdev-docker if need be. | |
### ## Markdown | |
### | |
### Uses [itkdev/markdownlint](https://hub.docker.com/r/itkdev/markdownlint) to | |
### link all Markdown files (`**/*.md`) in the project. | |
### | |
### [markdownlint-cli configuration ### files](https://github.com/igorshubovych/markdownlint-cli?tab=readme-ov-file#configuration), | |
### `.markdownlint.jsonc` and `.markdownlintignore` control what is actually linted and how. | |
name: Markdown | |
on: | |
pull_request: | |
push: | |
jobs: | |
markdown-lint: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- run: | | |
docker run --rm --volume "$PWD":/md itkdev/markdownlint '**/*.md' |