Skip to content

docs: refresh community health suite and publish 10-chapter GitHub op… #57

docs: refresh community health suite and publish 10-chapter GitHub op…

docs: refresh community health suite and publish 10-chapter GitHub op… #57

Workflow file for this run

name: Docs Lint
on:
pull_request:
paths:
- '**/*.md'
- '.markdownlint.json'
push:
branches: [main]
paths:
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
markdownlint:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265 # v19.1.0
with:
globs: |
**/*.md
!**/node_modules/**
!.gemini/**
!.agent/**
!.claude/**
!.agents/**
!.impeccable/**
!.code-review-graph/**
!graphify-out/**
!docs/audit/**
!docs/superpowers/**
!findings.md
!task_plan.md
!playwright-report/**
!test-results/**
!SECURITY_REMEDIATION_PLAN.md
!ORIGINAL_REQUEST.md
!coverage/**
!dist/**
config: '.markdownlint.json'