|
8 | 8 |
|
9 | 9 | jobs:
|
10 | 10 | test-non-main-repo-fix-404:
|
11 |
| - runs-on: ubuntu-latest |
12 |
| - steps: |
13 |
| - - name: Checkout |
14 |
| - uses: actions/checkout@v4 |
15 |
| - - name: Setup .NET |
16 |
| - uses: actions/setup-dotnet@v4 |
17 |
| - with: |
18 |
| - dotnet-version: 8.0.x |
19 |
| - - name: GitHub Pages Blazor WASM |
20 |
| - uses: ./ |
21 |
| - with: |
22 |
| - project-path: Test/Test.csproj |
23 |
| - main-repo: false |
24 |
| - fix-404: true |
25 |
| - - name: Verify |
26 |
| - run: Test/Verify.sh --non-main-repo --fix-404 ${{ github.event.repository.name }} |
| 11 | + uses: ./.github/workflows/test-core.yml |
| 12 | + with: |
| 13 | + main-repo: false |
| 14 | + fix-404: true |
27 | 15 |
|
28 | 16 | test-main-repo-fix-404:
|
29 |
| - runs-on: ubuntu-latest |
30 |
| - steps: |
31 |
| - - name: Checkout |
32 |
| - uses: actions/checkout@v4 |
33 |
| - - name: Setup .NET |
34 |
| - uses: actions/setup-dotnet@v4 |
35 |
| - with: |
36 |
| - dotnet-version: 8.0.x |
37 |
| - - name: GitHub Pages Blazor WASM |
38 |
| - uses: ./ |
39 |
| - with: |
40 |
| - project-path: Test/Test.csproj |
41 |
| - main-repo: true |
42 |
| - fix-404: true |
43 |
| - - name: Verify |
44 |
| - run: Test/Verify.sh --main-repo --fix-404 ${{ github.event.repository.name }} |
| 17 | + uses: ./.github/workflows/test-core.yml |
| 18 | + with: |
| 19 | + main-repo: true |
| 20 | + fix-404: true |
45 | 21 |
|
46 | 22 | test-non-main-repo-no-fix-404:
|
47 |
| - runs-on: ubuntu-latest |
48 |
| - steps: |
49 |
| - - name: Checkout |
50 |
| - uses: actions/checkout@v4 |
51 |
| - - name: Setup .NET |
52 |
| - uses: actions/setup-dotnet@v4 |
53 |
| - with: |
54 |
| - dotnet-version: 8.0.x |
55 |
| - - name: GitHub Pages Blazor WASM |
56 |
| - uses: ./ |
57 |
| - with: |
58 |
| - project-path: Test/Test.csproj |
59 |
| - main-repo: false |
60 |
| - fix-404: false |
61 |
| - - name: Verify |
62 |
| - run: Test/Verify.sh --non-main-repo --no-fix-404 ${{ github.event.repository.name }} |
| 23 | + uses: ./.github/workflows/test-core.yml |
| 24 | + with: |
| 25 | + main-repo: false |
| 26 | + fix-404: false |
63 | 27 |
|
64 | 28 | test-main-repo-no-fix-404:
|
65 |
| - runs-on: ubuntu-latest |
66 |
| - steps: |
67 |
| - - name: Checkout |
68 |
| - uses: actions/checkout@v4 |
69 |
| - - name: Setup .NET |
70 |
| - uses: actions/setup-dotnet@v4 |
71 |
| - with: |
72 |
| - dotnet-version: 8.0.x |
73 |
| - - name: GitHub Pages Blazor WASM |
74 |
| - uses: ./ |
75 |
| - with: |
76 |
| - project-path: Test/Test.csproj |
77 |
| - main-repo: true |
78 |
| - fix-404: false |
79 |
| - - name: Verify |
80 |
| - run: Test/Verify.sh --main-repo --no-fix-404 ${{ github.event.repository.name }} |
| 29 | + uses: ./.github/workflows/test-core.yml |
| 30 | + with: |
| 31 | + main-repo: true |
| 32 | + fix-404: false |
0 commit comments