typos/.github/workflows/test-action.yml
Vanessasaurus 7d09c5a4bf
feat(ci): adding github action to use typos to check spelling (#267)
Signed-off-by: vsoch <vsoch@users.noreply.github.com>

Co-authored-by: vsoch <vsoch@users.noreply.github.com>
2021-05-31 19:42:45 -05:00

25 lines
667 B
YAML

name: Test GitHub Action
on: [pull_request]
jobs:
run:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v2
- name: Prepare file with mistakes.
run: echo "The quick brown foxx jumped over the slepy dog." > file.txt
- name: Test force pass with mistakes
continue-on-error: true
uses: ./
with:
files: ./file.txt
- name: Prepare file with no mistakes.
run: echo "The quick brown fox jumped over the sleepy dog." > file.txt
- name: Test force pass with no mistakes
uses: ./
with:
files: ./file.txt