Skip to content

Add 2024 Activities #61

Add 2024 Activities

Add 2024 Activities #61

Workflow file for this run

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"