Skip to content

Commit

Permalink
Merge pull request #41910 from jbampton/add-github-actions
Browse files Browse the repository at this point in the history
feat(CI): correct commonly misspelled English words with GitHub Actions
  • Loading branch information
rafaelfranca committed Apr 12, 2021
2 parents 8210d0a + bf89867 commit 26150e9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Lint

on: [pull_request]

jobs:
misspell:
name: Check Spelling Misspell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: wget -O - -q https://git.io/misspell | sh -s -- -b .
- name: Misspell
run: git ls-files --empty-directory | xargs ./misspell -i 'aircrafts,devels,invertions' -error

0 comments on commit 26150e9

Please sign in to comment.