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 @@ -34,6 +34,16 @@ jobs:
run: >
dotnet tool restore

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x

- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.14'

- name: Capture tool versions
shell: bash
run: |
Expand All @@ -55,21 +65,9 @@ jobs:
# 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
with:
globs: '**/*.md'

- name: Run spell checker
uses: streetsidesoftware/cspell-action@v8
with:
files: '**/*.{md,cs}'
incremental_files_only: false

- name: Run YAML linter
uses: ibiqlik/action-yamllint@v3
with:
config_file: .yamllint.yaml
- name: Run linters
shell: bash
run: bash ./lint.sh

- name: Upload quality artifacts
uses: actions/upload-artifact@v7
Expand Down