Skip to content

vale linter action

vale linter action #27

Workflow file for this run

name: Lint with Vale
on:
push:
branches:
- main
pull_request:
jobs:
vale-lint:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Step 2: Install Vale
- name: Install Vale
run: |
sudo apt update
sudo snap install vale
vale --version
# Step 3: Run Vale linter
- name: Run Vale linter
run: |
vale --minAlertLevel=error docs/
continue-on-error: false