Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 13 additions & 15 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,23 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

# === RUN QUALITY CHECKS ===
# This section runs all quality checks for the project.
# Downstream projects: Add any additional quality checks here.

- name: Run markdown linter
uses: DavidAnson/markdownlint-cli2-action@v22
- name: Setup Node.js
uses: actions/setup-node@v6
with:
globs: '**/*.md'
node-version: 24.x

- name: Run spell checker
uses: streetsidesoftware/cspell-action@v8
- name: Setup Python
uses: actions/setup-python@v6
with:
files: '**/*.{md,cs}'
incremental_files_only: false
python-version: '3.14'

- name: Run YAML linter
uses: ibiqlik/action-yamllint@v3
with:
config_file: .yamllint.yaml
# === RUN QUALITY CHECKS ===
# This section runs all quality checks for the project.
# Downstream projects: Add any additional quality checks here.

- name: Run linters
shell: bash
run: bash ./lint.sh

# Builds and unit-tests the project on supported operating systems to ensure
# unit-tests operate on all platforms and to run SonarScanner for generating
Expand Down
Loading