aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/pull-compliance_docs.yml
blob: c033b62711dfa79113d9c55f7f2e947d514c8080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: "Pull: Compliance testing for documentation"

on:
  pull_request:
    paths:
      - "docs/**"
      - "*.md"

concurrency:
  group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
  cancel-in-progress: true

jobs:
  compliance-docs:
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v3
      - name: setup node
        uses: actions/setup-node@v3
        with:
          node-version: 20
      - name: install dependencies
        run: make deps-frontend
      - name: lint markdown
        run: make lint-md