mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-15 08:08:58 -06:00
Just an initial portion for now fixing incorrect text and preventing future incorrect text. Eventually, I'd like to fix everything still listed under "ignoredWords" in cspell.json.
20 lines
466 B
YAML
20 lines
466 B
YAML
name: Check Spelling
|
|
on: [push, pull_request]
|
|
jobs:
|
|
spellcheck:
|
|
strategy:
|
|
matrix:
|
|
operating-system:
|
|
- ubuntu-22.04
|
|
name: ${{ matrix.operating-system }}
|
|
runs-on: ${{ matrix.operating-system }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Run CSpell
|
|
uses: streetsidesoftware/cspell-action@v6
|
|
with:
|
|
incremental_files_only: false
|