mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-11 09:23:36 +08:00
66995c9c7b
Signed-off-by: szaimen <szaimen@e.mail.de>
23 lines
508 B
YAML
23 lines
508 B
YAML
name: 'Spellcheck'
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
spellcheck:
|
|
name: Check spelling
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: spelling or typos
|
|
uses: actions/checkout@v3
|
|
- name: fix permission for reviewdog
|
|
run: sudo chown -R root:root $GITHUB_WORKSPACE
|
|
- name: misspell
|
|
uses: reviewdog/action-misspell@v1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
locale: "US"
|
|
fail_on_error: true
|