docs: add SSL/TLS database connection guide and document missing env … #7913
This file contains hidden or 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@v6 | |
| - uses: denoland/setup-deno@v2.0.3 | |
| with: | |
| deno-version: "~1.32" | |
| - name: Check broken PageRef links | |
| run: deno run --allow-read .github/scripts/broken-pageref.js | |
| - 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 |