[BLOG] Pulsar's CI #524
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
# Workflow to test the spelling within the PR | |
name: Spell Checker | |
on: | |
pull_request: | |
# Not specifying a type, lets it run on an PR update | |
jobs: | |
spellcheck: | |
runs-on: ubuntu-latest | |
name: Spellcheck | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: tbroadley/spellchecker-cli-action@v1 | |
with: | |
quiet: true # Dont output anything if the file contains no spelling mistakes | |
files: "docs/**/**/*.md !docs/.vuepress" | |
language: "en-US" | |
dictionaries: "./tools/spell-checker-dictionary.txt" |