Skip to content

fix: README lint errors and expand vocabulary #2

fix: README lint errors and expand vocabulary

fix: README lint errors and expand vocabulary #2

Workflow file for this run

name: Lint Documentation
on:
pull_request:
paths:
- 'docs/**'
- '*_versioned_docs/**'
- 'README.md'
- '.vale.ini'
- 'styles/**'
jobs:
vale:
name: Vale
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Vale Linter
uses: errata-ai/vale-action@reviewdog
with:
files: docs
fail_on_error: true
filter_mode: added
reporter: github-pr-review
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}