28 lines
688 B
YAML
28 lines
688 B
YAML
name: Markdown linter
|
|
|
|
on:
|
|
# pull_request:
|
|
# paths: [ "**/*.md" ]
|
|
# types: [ "opened", "reopened", "synchronize" ]
|
|
push: {}
|
|
# paths: [ "**/*.md" ]
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
markdown-link-checker:
|
|
runs-on:
|
|
- ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
# - name: Install build tools
|
|
# run: |
|
|
# apt update --yes
|
|
# apt install --yes build-essential
|
|
- name: Verify links in markdown files
|
|
env:
|
|
CONTAINER_RUNTIME: docker
|
|
HELM_IMAGE_REGISTRY_HOST: harbor.cryptic.systems
|
|
HELM_IMAGE_REPOSITORY: docker/library/node
|
|
run: |
|
|
ls -la $(pwd)
|
|
make container-run/readme/link |