Skip to content

Commit

Permalink
ci: add spell check
Browse files Browse the repository at this point in the history
  • Loading branch information
eatradish committed Jun 17, 2024
1 parent dd76c63 commit 743efba
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/typo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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@v4

- uses: jitterbit/get-changed-files@v1
with:
# Format of the steps output context.
# Can be 'space-delimited', 'csv', or 'json'.
# Default: 'space-delimited'
format: 'space-delimited'

- name: Check spelling of file.txt
uses: crate-ci/typos@master
with:
files: ${{ steps.files.outputs.added_modified }}

0 comments on commit 743efba

Please sign in to comment.