Skip to content

Configure linter for markdown Closes #60 #1

Configure linter for markdown Closes #60

Configure linter for markdown Closes #60 #1

Workflow file for this run

name: CI Pipeline with Vale
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Lint Markdown with Vale
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build Docker image with Vale
run: |
docker build -t vale -f Dockerfile-vale .
- name: Run Vale linting
run: |
# Run the container. It will execute "vale ." as its CMD.
docker run --rm vale