mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-22 21:54:18 +08:00
7b40e6b733
Signed-off-by: szaimen <szaimen@e.mail.de>
18 lines
353 B
YAML
18 lines
353 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"
|