Skip to content

Commit

Permalink
add spellcheck to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lightclient committed May 10, 2022
1 parent 5a0735d commit 8024a71
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Spellcheck
on: [push, pull_request, workflow_dispatch]

jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: rojopolis/[email protected]
name: Spellcheck
36 changes: 36 additions & 0 deletions spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
matrix:
- name: markdown
sources:
- '**/*.md|!beacon-apis/**'
aspell:
lang: en
d: en_US
ignore-case: true
run-together: true
run-together-min: 2
run-together-limit: 256
dictionary:
wordlists:
- wordlist.txt
encoding: utf-8
pipeline:
- pyspelling.filters.markdown:
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
- name: yaml schemas
sources:
- '**/*.yaml|!beacon-apis/**|!spellcheck.yaml'
aspell:
lang: en
d: en_US
run-together: true
run-together-min: 2
run-together-limit: 256
dictionary:
wordlists:
- wordlist.txt
encoding: utf-8
pipeline: null
26 changes: 26 additions & 0 deletions wordlist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apis
bellatrix
bls
bn
cli
dev
eth
http
https
json
mev
nodejs
npm
oapi
openapi
ssz
tbh
ui
uint
unblind
unblinded
url
validators
validator's
vc
wei

0 comments on commit 8024a71

Please sign in to comment.