chore: [release-1.4] expose application and system metrics on same port #109
Workflow file for this run
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: Check Markdown links | |
on: | |
pull_request: | |
paths: | |
- '**.md' | |
- 'docs/**' | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check markdown links in docs | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
config-file: '.github/workflows/link-checker.config.json' | |
folder-path: 'docs/' | |
- name: Check markdown files in root | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
config-file: '.github/workflows/link-checker.config.json' | |
# ignore subfolders we don't want to check everthing, there is a lot of files from plugins that we don't control | |
max-depth: 0 |