Bump ws from 7.5.8 to 7.5.10 #420
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: Spellcheck Action | |
on: | |
pull_request: | |
branches: [ "master" ] | |
push: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
# The checkout step | |
- uses: actions/checkout@v3 | |
- uses: rojopolis/[email protected] | |
name: Spellcheck | |
with: | |
config_path: spellcheck.yml # put path to configuration file here | |
output_file: spellcheck-output.txt | |
- uses: actions/upload-artifact@v3 | |
if: '!cancelled()' # Do not upload artifact if job was cancelled | |
with: | |
name: Spellcheck Output | |
path: spellcheck-output.txt |