mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-07 06:07:45 +08:00
19 lines
353 B
YAML
19 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"
|