update table on transitioning to run_shell_cmd
to also cover run_cmd_qa
options
#704
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
--- | |
# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
name: MarkDown linting | |
on: [push, pull_request] # yamllint disable-line rule:truthy | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: MarkdownLint | |
uses: DavidAnson/markdownlint-cli2-action@v10 | |
with: | |
# all markdown, except filter out {demos,version-specific}/* for now, until we fix issues in those sections | |
globs: | | |
**/*.md | |
#docs/demos | |
#docs/version-specific |