Add 2024 Activities #61
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: Check markdown and code quality | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
spellchecking: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Check out the code | |
with: | |
submodules: true # Fetch Hugo themes (true OR recursive) | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- uses: actions/setup-node@v1 | |
name: Run spell check | |
with: | |
node-version: "18" | |
- run: npm install -g cspell | |
- run: cspell --config ./.cspell.json --exclude "./home/themes/**" "**/*.md" |