refactor: Support multiple views by isolating data_points from shared modification #525
Workflow file for this run
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
| name: Markdown Lint Check | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| markdownlint-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" --config .markdownlint.json | |
| - name: "Markdown Lint Check" | |
| uses: DavidAnson/markdownlint-cli2-action@v19 | |
| continue-on-error: true | |
| with: | |
| fix: false | |
| globs: | | |
| **/*.md | |
| !**/CHANGELOG.md |