Skip to content

Commit a87c41f

Browse files
add spelling checks using vale (#1677)
* add spelling checks using vale * Update .github/workflows/lint.yml adds the "what's new" content --------- Co-authored-by: m4sterbunny <[email protected]>
1 parent e2cc337 commit a87c41f

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/lint.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121

2222
jobs:
2323
lint:
24-
name: Lint Code Base, Spelling, Link Check
24+
name: Lint Code Base
2525
runs-on: ubuntu-latest
2626
permissions:
2727
contents: read
@@ -30,8 +30,19 @@ jobs:
3030

3131
- name: Lint
3232
uses: ConsenSys/docs-gha/lint@cc8b9d9065f5f20b105954f8e806f55c1e235ecd
33+
34+
spelling:
35+
name: Spelling
36+
runs-on: ubuntu-latest
37+
strategy:
38+
matrix:
39+
file-extensions: [".md", ".mdx"]
40+
steps:
41+
- uses: actions/checkout@v4
42+
- name: Vale
43+
uses: Consensys/docs-gha/spelling@main
3344
with:
34-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
FILEPATHS: "snaps,services,wallet,developer-tools,docs"
3546

3647
linkCheck:
3748
name: Link Checking

0 commit comments

Comments
 (0)