Skip to content

Commit

Permalink
ci: add spell_checker
Browse files Browse the repository at this point in the history
  • Loading branch information
alestiago committed Feb 19, 2024
1 parent 01125e4 commit ed74763
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/spell_checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: spell_checker

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: zwaldowski/cspell-action@v1
with:
paths: "**/*.{md,dart}"
config: .github/cspell.json
exclude: ".gitignore **.gen.dart **.g.dart"

0 comments on commit ed74763

Please sign in to comment.