docs(agents): summarize the OpenCode ecosystem (closes #100) #493
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Spellcheck | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| name: Spellcheck | |
| permissions: | |
| contents: read | |
| container: | |
| image: rocker/verse:latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v7 | |
| - name: Run Spelling Check test | |
| uses: insightsengineering/r-spellcheck-action@v3.0.3 | |
| # spell_check_package() above reads only the package files (README, | |
| # DESCRIPTION, man/, vignettes/), so the site's chapters need their own | |
| # pass (#177). | |
| - name: Spell-check chapter prose | |
| run: Rscript .github/scripts/spellcheck-chapters.R |