Fix guide links issue in OSPO Book: chapter 03 and references #6
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: Review docs | |
on: | |
pull_request: | |
paths: | |
- "ospo-book/content/*/*.md" | |
jobs: | |
review-docs: | |
name: Review docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download vale | |
env: | |
BASEURL: https://github.com/errata-ai/vale/releases/download | |
VERSION: 2.29.0 | |
run: | | |
mkdir -p .vale/bin && cd .vale/bin | |
wget -O vale.tar.gz --quiet "${BASEURL}/v${VERSION}/vale_${VERSION}_Linux_64-bit.tar.gz" | |
tar xzf vale.tar.gz | |
pwd >> "$GITHUB_PATH" | |
- name: Run vale | |
run: | | |
vale --output=".vale.tmpl" --no-exit ospo-book/content |