Skip to content

Commit c1601d2

Browse files
committed
feat: remove spell check
1 parent 491dc83 commit c1601d2

2 files changed

Lines changed: 2 additions & 35 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -118,18 +118,4 @@ jobs:
118118
- name: Type check examples
119119
run: |
120120
cd packages/examples
121-
bun run tsc --noEmit
122-
123-
- name: Dry run examples (syntax check)
124-
run: |
125-
cd packages/examples
126-
# Check that all example files can be parsed
127-
for file in src/*.tsx; do
128-
echo "Checking $file..."
129-
bun run --dry-run "$file" || exit 1
130-
done
131-
env:
132-
API_ID: ${{ secrets.API_ID || '12345' }}
133-
API_HASH: ${{ secrets.API_HASH || 'test_hash' }}
134-
BOT_TOKEN: ${{ secrets.BOT_TOKEN || 'test_token' }}
135-
continue-on-error: true
121+
bun run tsc --noEmit

.github/workflows/docs.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,4 @@ jobs:
3838
--exclude "https://github.com/your-username/*"
3939
'./**/*.md'
4040
fail: false
41-
42-
- name: Spell check
43-
uses: streetsidesoftware/cspell-action@v6
44-
with:
45-
files: '**/*.{md,ts,tsx}'
46-
config: |
47-
{
48-
"words": [
49-
"mtcute",
50-
"telegram",
51-
"bun",
52-
"changeset",
53-
"changesets",
54-
"monorepo",
55-
"reconciler",
56-
"autodelete",
57-
"emoji",
58-
"prepublish"
59-
]
60-
}
41+

0 commit comments

Comments
 (0)