Skip to content

Commit

Permalink
chore: added codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
ezhil56x committed May 1, 2024
1 parent a1b78a1 commit d343220
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build docs

on:
push:
branches:
- "**"
paths:
- "docs/**"
- "**.md"
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
paths:
- "docs/**"
- "**.md"

jobs:
check_spelling:
name: Check spelling
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
skip: .git,*/package.json,*/package-lock.json,*.lock,.github,.vscode,assets
ignore_words_file: .codespellignore
check_hidden: false

0 comments on commit d343220

Please sign in to comment.