Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
feat(pipeline): add spell check to pull request
Browse files Browse the repository at this point in the history
This will check for commonly misspelled English words using misspell

Closes #193
  • Loading branch information
ratanparai committed Aug 13, 2020
1 parent c44456e commit 18f5b0d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/sanitycheck.yml
@@ -0,0 +1,21 @@
name: sanitycheck

on:
pull_request:
branches: [ master ]

jobs:
misspell:
runs-on: ubuntu-latest

steps:
- name: check out code
uses: actions/checkout@v2

- name: install misspell
run: |
curl -L -o ./install-misspell.sh https://git.io/misspell
sh ./install-misspell.sh
- name: run misspell
run: ./bin/misspell -error .

0 comments on commit 18f5b0d

Please sign in to comment.