To be more specific platform use case, updated document with RID value #57
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: Lint and spell-check | |
on: | |
pull_request: | |
branches: [ main, live ] | |
push: | |
branches: [ main, live ] | |
jobs: | |
lint: | |
name: Lint and spell-check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Lint | |
uses: DavidAnson/markdownlint-cli2-action@v9 | |
with: | |
globs: '**/*.md' | |
- name: Spell check | |
uses: streetsidesoftware/cspell-action@v2 | |
with: | |
files: '**/*.{md,yml}' |