mirror of
https://github.com/t2linux/wiki.git
synced 2026-04-30 13:32:14 -07:00
17b12bd987
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
347 B
YAML
14 lines
347 B
YAML
name: Lint
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: xt0rted/markdownlint-problem-matcher@v3
|
|
- name: "Run Markdown linter"
|
|
uses: docker://avtodev/markdown-lint:v1
|
|
with:
|
|
args: docs/**/*.md
|