Files
reposilite-charts/.gitea/workflows/markdown-linters.yaml
T
CSRBot a989fae79d
Helm / helm-lint (push) Successful in 9s
Helm / helm-lint (pull_request) Successful in 7s
Helm / helm-unittest (push) Successful in 22s
Helm / helm-unittest (pull_request) Successful in 15s
chore(deps): update docker.io/library/node docker tag to v26.3.1
2026-06-18 15:17:28 +00:00

45 lines
1004 B
YAML

name: Markdown linter
on:
pull_request:
paths: [ "**/*.md" ]
types: [ "opened", "reopened", "synchronize" ]
push:
branches:
- '**'
paths: [ "**/*.md" ]
tags-ignore:
- '**'
workflow_dispatch: {}
jobs:
markdown-link-checker:
container:
image: docker.io/library/node:26.3.1-alpine
runs-on: ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git npm
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Verify links in markdown files
run: |
npm install
npm run readme:link
markdown-lint:
container:
image: docker.io/library/node:26.3.1-alpine
runs-on: ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Lint markdown files
run: |
npm install
npm run readme:lint