Configure linter for markdown Closes #60 #2
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: CI Pipeline with Vale | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
pathd: | |
- "**/*.md" | |
jobs: | |
lint: | |
name: Lint Markdown with Vale | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Run Vale linting | |
uses: errata-ai/vale-action@v1 | |
with: | |
files: "." | |
fail_on_error: true | |
debug: true |