Merge pull request #414 from dtischler/main #454
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: Expert Projects CI | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
jobs: | |
markdown-link-check: | |
name: Check for dead links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Markdown links check | |
uses: ruzickap/action-my-markdown-link-checker@v1 | |
with: | |
verbose: true | |
quiet: true | |
markdown-spellcheck: | |
name: Check spelling | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: rojopolis/spellcheck-github-actions@v0 | |
name: Spellcheck |