20 lines
463 B
YAML
20 lines
463 B
YAML
name: Markdown linter
|
|
|
|
on:
|
|
# pull_request:
|
|
# paths: [ "**/*.md" ]
|
|
# types: [ "opened", "reopened", "synchronize" ]
|
|
push: {}
|
|
# paths: [ "**/*.md" ]
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
markdown-link-checker:
|
|
container: docker.io/library/node:22.9.0-alpine
|
|
runs-on:
|
|
- ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
with:
|
|
github-server-url: https://git.cryptic.systems
|
|
- run: npm install && npm run readme:link |