docs: Add warning that readonly properties are not allowed in structs… #4541
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: markdown-style-check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint-docs: | |
name: Documentation Markdown Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Lint all files | |
uses: docker://avtodev/markdown-lint:v1.5 | |
with: | |
config: 'markdown-style-config.yml' | |
args: './' | |
ignore: './resources/references/adr/* ./assets/adr/* ./resources/guidelines/code/core/* ./snippets/guide/*' | |
continue-on-error: false |