prometheus-postgres-exporter/.gitea/workflows/markdown-linters.yaml
Markus Pesch b81bd47330
All checks were successful
Markdown linter / markdown-link-checker (push) Successful in 28s
continuous-integration/drone/push Build is passing
fix
2025-01-11 13:33:54 +01:00

24 lines
542 B
YAML

name: Markdown linter
on:
# pull_request:
# paths: [ "**/*.md" ]
# types: [ "opened", "reopened", "synchronize" ]
push: {}
# paths: [ "**/*.md" ]
workflow_dispatch: {}
jobs:
markdown-link-checker:
container:
image: docker.io/library/node:22.9.0-alpine
# options: --entrypoint /bin/sh
runs-on:
- ubuntu-latest
steps:
- run: |
apk update
apk add git
- uses: actions/checkout@v4.2.2
- name: Verify links in markdown files
run: npm install && npm run readme:link