Skip to content

[Trimming] Add a feature flag to disable XAML loading at runtime #69

[Trimming] Add a feature flag to disable XAML loading at runtime

[Trimming] Add a feature flag to disable XAML loading at runtime #69

Workflow file for this run

name: Documentation Checks
on:
push:
branches:
- main
paths:
# This ensures the check will only be run when something changes in the docs content
- "docs/**/*"
pull_request:
branches:
- main
paths:
- "docs/**/*"
jobs:
spellcheck:
name: "Docs: Spellcheck"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Check out the code
- uses: actions/setup-node@v1
name: Setup node
with:
node-version: "16"
- run: npm install -g cspell
name: Install cSpell
- run: cspell --config ./cSpell.json "docs/**/*.md" --no-progress
name: Run cSpell