mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-28 23:32:48 +00:00
21 lines
413 B
YAML
21 lines
413 B
YAML
name: Typos Check
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
run:
|
|
name: Spell Check with Typos
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions Repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Check spelling
|
|
uses: crate-ci/typos@master
|
|
with:
|
|
args: '--exclude "**/*_svg" --exclude "**/migrations/**"'
|