mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* Add contributing guidelines. * Add spellchecking. * Update dictionary. * Update dictionary. * Update dictionary.
17 lines
282 B
YAML
17 lines
282 B
YAML
name: Documentation tests
|
|
on:
|
|
push:
|
|
paths:
|
|
- "docs/**/*"
|
|
pull_request:
|
|
paths:
|
|
- "docs/**/*"
|
|
|
|
jobs:
|
|
check-spelling:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Check spelling
|
|
run: bash ci/spellcheck.sh list
|