mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-01-12 22:50:20 +08:00
* feat: remove core version lock * chore: v6.4.1 * chore: v6.4.1 * chore: configure lerna for independent versions * chore: configure lerna for independent versions * chore: only check docs folder skipping elsewhere due to generated files such as changelogs
20 lines
544 B
YAML
20 lines
544 B
YAML
name: Documentation
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
spelling:
|
|
name: 'Spelling & Grammar'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install Dependencies
|
|
run: |
|
|
sudo npm install --global spellchecker-cli
|
|
- name: Spell check
|
|
run: |
|
|
spellchecker --quiet --files="docs/**/*.md" --dictionaries="./.spellcheck.dict.txt" --reports="spelling.json" --plugins spell indefinite-article repeated-words syntax-mentions syntax-urls frontmatter
|