Update jekyll ecosystem packages to v4.3.2 #133
This file contains 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
--- | |
name: Lint Docs | |
on: | |
push: ~ | |
pull_request: ~ | |
jobs: | |
docs-lint: | |
name: Markdownlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: github/super-linter/[email protected] | |
env: | |
DEFAULT_BRANCH: latest | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LINTER_RULES_PATH: '.' # From https://github.com/github/super-linter/pull/859#issuecomment-709625090 | |
VALIDATE_MARKDOWN: true | |
MARKDOWN_CONFIG_FILE: docs/.markdownlint.yml | |
FILTER_REGEX_INCLUDE: '/docs/.*' |