Skip to content

correct various spellings #1

correct various spellings

correct various spellings #1

name: Spellcheck
on:
push:
branches: ["master"]
pull_request:
paths:
- '**.js'
- '**.txt'
- '**.html'
- '**.md'
jobs:
spelling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check Spelling
uses: rojopolis/spellcheck-github-actions@v0
with:
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