Skip to content

Commit

Permalink
build(typos): Add typos check to build
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusElwin committed Aug 26, 2023
1 parent 4343781 commit 48aee58
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/typos.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Typo and spelling check
on: [pull_request]

jobs:
run:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v2

- name: Check spelling of all markddown files
uses: crate-ci/typos@master
with:
files: *.md

0 comments on commit 48aee58

Please sign in to comment.