Skip to content

Commit 99889a8

Browse files
committed
Add spellchecker for english files
1 parent 1f2720d commit 99889a8

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.cspell.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "0.2",
3+
"language": "en",
4+
"words": ["bunx"],
5+
"ignorePaths": [
6+
"**/node_modules/**/*",
7+
"pnpm-lock.yaml",
8+
".gitignore",
9+
".git/**/*",
10+
".cspell.json",
11+
"docs/CROWDIN/**/*"
12+
]
13+
}

.github/workflows/tests.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Tests
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
spellcheck:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v1
11+
- uses: oven-sh/setup-bun@v1
12+
- name: spellcheck
13+
run: |
14+
bunx cspell lint --no-progress --gitignore '{**,.*}/{*,.*}'

0 commit comments

Comments
 (0)