Feature/das 22640 singer metrics node (#181) #953
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 CI/CD | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
markdown_checker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone git repo | |
uses: actions/checkout@v1 | |
- name: Install npm | |
run: sudo apt-get install npm | |
- name: Install link validator | |
run: sudo -H -E npm install --global remark-cli remark-validate-links | |
- name: Check for broken links (404 errors) | |
run: remark --frail -u validate-links . |