Skip to content

Commit

Permalink
add spelling checks using vale (#1677)
Browse files Browse the repository at this point in the history
* add spelling checks using vale

* Update .github/workflows/lint.yml

adds the "what's new" content

---------

Co-authored-by: m4sterbunny <[email protected]>
  • Loading branch information
joshuafernandes and m4sterbunny authored Oct 29, 2024
1 parent e2cc337 commit a87c41f
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,services,wallet,developer-tools,docs"

linkCheck:
name: Link Checking
Expand Down

0 comments on commit a87c41f

Please sign in to comment.