mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-10 17:03:44 +08:00
1339be5045
Signed-off-by: szaimen <szaimen@e.mail.de>
19 lines
383 B
YAML
19 lines
383 B
YAML
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"
|
|
fail_on_error: true
|