-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Normalize whitespace in workflow files
Always put an empty line between workflow steps. Get rid of stray trailing spaces at the ends of lines.
- Loading branch information
Showing
6 changed files
with
19 additions
and
10 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
# Workflow to test the spelling within the PR | ||
# Workflow to test the spelling within the PR | ||
|
||
name: Spell Checker | ||
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 | ||
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 | ||
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" |
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
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