mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-27 09:28:43 +07:00
19 lines
491 B
YAML
19 lines
491 B
YAML
name: Report readability
|
|
|
|
# This action only works on pull request events
|
|
on: pull_request
|
|
|
|
jobs:
|
|
report-readability:
|
|
name: Report readability
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo with history
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: Rebilly/lexi@v2
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
glob: '**/*.md'
|