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
14 changes: 10 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,12 @@ jobs:
build-mode: manual

- name: Restore Tools
run: dotnet tool restore
run: >
dotnet tool restore

- name: Restore Dependencies
run: dotnet restore
run: >
dotnet restore

- name: Build
run: >
Expand Down Expand Up @@ -246,15 +248,17 @@ jobs:
dotnet-version: '10.x'

- name: Restore Tools
run: dotnet tool restore
run: >
dotnet tool restore

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 'lts/*'

- name: Install npm dependencies
run: npm install
run: >
npm install

- name: Build PDF with Pandoc
run: >
Expand Down Expand Up @@ -284,6 +288,7 @@ jobs:
--report-depth 1

- name: Display CodeQL Quality Report
shell: bash
run: |
echo "=== CodeQL Quality Report ==="
cat docs/quality/codeql-quality.md
Expand All @@ -301,6 +306,7 @@ jobs:
--report-depth 1

- name: Display SonarCloud Quality Report
shell: bash
run: |
echo "=== SonarCloud Quality Report ==="
cat docs/quality/sonar-quality.md
Expand Down
Loading