Skip to content

Update dependency github-pages to v232 #1013

Update dependency github-pages to v232

Update dependency github-pages to v232 #1013

Workflow file for this run

name: Housekeeping
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linting:
name: "Markdown linting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Check out the code
- uses: actions/setup-node@v4
name: Setup node
with:
node-version: "20"
- run: npm install -g markdownlint-cli2
name: Install markdownlint-cli2
- run: markdownlint-cli2 --config ".markdownlint-cli2.jsonc" "**/*.md"
spellchecking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Check out the code
- uses: actions/setup-node@v4
name: Run spell check
with:
node-version: "20"
- run: npm install -g cspell
- run: cspell --config ./cSpell.json --no-progress "**/*.md"