mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-01 19:41:44 +08:00
Merge pull request #212 from nextcloud/enh/209/set-up-spellcheck
set up spellcheck
This commit is contained in:
commit
96b381bcab
1 changed files with 18 additions and 0 deletions
18
.github/workflows/spellcheck.yml
vendored
Normal file
18
.github/workflows/spellcheck.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: 'Spellcheck'
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
spellcheck:
|
||||
name: Check spelling
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: spelling or typos
|
||||
uses: actions/checkout@v2
|
||||
- name: misspell
|
||||
uses: reviewdog/action-misspell@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
locale: "US"
|
Loading…
Reference in a new issue