Skip to content

Commit fcb8aeb

Browse files
authored
Validate assembler content source configs as part of our PR builds (#1301)
1 parent a624e2f commit fcb8aeb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/pr.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
1515

1616
jobs:
17-
validate-navigation:
17+
validate-assembler:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v4
@@ -23,9 +23,12 @@ jobs:
2323
id: bootstrap
2424
uses: ./.github/actions/bootstrap
2525

26-
- name: Build
26+
- name: Validate Navigation
2727
run: dotnet run --project src/tooling/docs-assembler -c release -- navigation validate
2828

29+
- name: Validate Content Sources
30+
run: dotnet run --project src/tooling/docs-assembler -c release -- content-source validate
31+
2932
build-lambda:
3033
uses: ./.github/workflows/build-link-index-updater-lambda.yml
3134

0 commit comments

Comments
 (0)