Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/harper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Harper

on:
pull_request:
paths:
- "**/*.md"
- "**/*.mdx"
workflow_dispatch:

jobs:
harper:
name: Grammar and Style Check
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Install Harper CLI
run: cargo install harper-cli --locked

- name: Run Harper
run: harper-cli lint docs src/pages
Loading