chore(shortcode): fix variable reference for page context in include.html #22600
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: Spelling | |
| on: | |
| merge_group: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| spelling-check: | |
| name: SPELLING check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| - run: npm run _install:cspell --ignore-scripts | |
| - run: npm run check:spelling | |
| dict-check: | |
| name: CSPELL page-local word list check | |
| runs-on: ubuntu-latest | |
| env: | |
| FIX_CMD: fix:dict | |
| steps: | |
| - uses: actions/[email protected] | |
| # Note: FIX_CMD runs fine without setup-node | |
| - run: npm run ${{ env.FIX_CMD }} | |
| - name: Any changed files? | |
| run: | | |
| CHANGES=`git status --porcelain` | |
| if [[ $CHANGES ]]; then | |
| echo "Add comment '/${{ env.FIX_CMD }}' to your PR in GitHub," | |
| echo "or locally run 'npm run ${{ env.FIX_CMD }}' and commit the changes:" | |
| echo "$CHANGES" | |
| exit 1 | |
| else | |
| echo "All page-local dictionaries are well formatted." | |
| fi |