update a few guides with the new LB options #205
Workflow file for this run
This file contains 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: | |
pull_request: | |
jobs: | |
spellcheck: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Install Extra Dictionaries | |
run: npm install | |
- name: Do spellcheck | |
uses: streetsidesoftware/cspell-action@v6 | |
with: | |
files: "**/*.{md,mdx}" | |
suggestions: true |