Skip to content

Commit

Permalink
add spelling checks using vale
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuafernandes committed Oct 27, 2024
1 parent 3b37407 commit 6666e23
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:

jobs:
lint:
name: Lint Code Base, Spelling, Link Check
name: Lint Code Base
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -30,8 +30,19 @@ jobs:

- name: Lint
uses: ConsenSys/docs-gha/lint@cc8b9d9065f5f20b105954f8e806f55c1e235ecd

spelling:
name: Spelling
runs-on: ubuntu-latest
strategy:
matrix:
file-extensions: [".md", ".mdx"]
steps:
- uses: actions/checkout@v4
- name: Vale
uses: Consensys/docs-gha/spelling@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FILEPATHS: "snaps"

linkCheck:
name: Link Checking
Expand Down

0 comments on commit 6666e23

Please sign in to comment.