Skip to content

Commit d629b64

Browse files
committed
WIP
1 parent 53ca00d commit d629b64

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/spellcheck.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Spell check
2+
3+
on:
4+
push: # (or pull requests)
5+
paths:
6+
- '.github/workflows/**'
7+
- 'storage/library/**'
8+
9+
jobs:
10+
spellcheck:
11+
runs-on: ubuntu-latest
12+
if: "! contains(toJSON(github.event.commits.*.message), '[skip-spellcheck]')"
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Run spellchecker for RU
16+
run: npx yaspeller storage/library/**

0 commit comments

Comments
 (0)