Skip to content

Theme traduction in mobile #459

Theme traduction in mobile

Theme traduction in mobile #459

Workflow file for this run

name: Documentation checks
on:
pull_request:
branches:
- main
jobs:
documentation-linting:
name: "Documentation: Linting"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get changed files
uses: tj-actions/changed-files@v39
id: changed-files
with:
files: 'docs/**/*.md'
files_ignore: 'docs/CHANGELOG.md'
separator: ","
- name: Run the markdown linting tool
uses: DavidAnson/markdownlint-cli2-action@v13
if: steps.changed-files.outputs.any_changed == 'true'
with:
config: '.github/workflows/config/.markdownlint.jsonc'
globs: ${{ steps.changed-files.outputs.all_changed_files }}
separator: ","