Add initial configuration files for Kavita with Tailscale sidecar (#158) #260
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: Perform markdown linting | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '.github/**' | |
| # - 'README.md' | |
| - 'LICENSE' | |
| - '.gitignore' | |
| - '.gitattributes' | |
| - '.editorconfig' | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '.github/**' | |
| # - 'README.md' | |
| - 'LICENSE' | |
| - '.gitignore' | |
| - '.gitattributes' | |
| - '.editorconfig' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone this repo | |
| uses: actions/checkout@v4 | |
| - name: Markdown Linting Action | |
| id: lint | |
| uses: avto-dev/markdown-lint@v1.5.0 | |
| with: | |
| config: "./.markdownlint.yml" | |
| args: "./services/**/*.md" |