Skip to content

add some placeholders #196

add some placeholders

add some placeholders #196

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
# Cancel previous actions from the same PR: https://stackoverflow.com/a/72408109
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
spell_check:
name: Spell Check
runs-on: ubuntu-latest
steps:
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install CSpell
run: npm install -g cspell
- uses: actions/checkout@v4
- name: Markdown Spellcheck
run: cspell --config .github/workflows/cspell.json "**/*.md"