Skip to content

Commit e434fff

Browse files
committed
upd
1 parent 45a8035 commit e434fff

5 files changed

Lines changed: 9 additions & 13 deletions

File tree

.github/workflows/Build and Publish.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,11 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
jobs:
14-
whitespace-check:
15-
uses: ./.github/workflows/trailing-whitespace-check.yml
16-
17-
integration-tests:
18-
needs: whitespace-check
14+
Integration-Tests:
1915
uses: ./.github/workflows/integration-tests.yml
2016

21-
publish:
22-
needs: [whitespace-check, integration-tests]
17+
Publish:
18+
needs: [Integration-Tests]
2319
runs-on: windows-latest
2420
timeout-minutes: 10
2521

.github/workflows/PR Validation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ concurrency:
77
cancel-in-progress: true
88

99
jobs:
10-
whitespace-check:
10+
Whitespace-Check:
1111
uses: ./.github/workflows/trailing-whitespace-check.yml
1212
secrets: inherit
1313

14-
integration-tests:
15-
needs: whitespace-check
14+
Tests:
15+
needs: Whitespace-Check
1616
uses: ./.github/workflows/integration-tests.yml
1717
secrets: inherit
1818

1919
build:
20-
needs: [whitespace-check, integration-tests]
20+
needs: [Whitespace-Check, Tests]
2121
runs-on: windows-latest
2222
timeout-minutes: 10
2323

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
tests:
8-
name: Integration Tests (${{ matrix.os }} / Electron ${{ matrix.electronVersion }})
8+
name: ${{ matrix.os }}-Electron ${{ matrix.electronVersion }}
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
fail-fast: false

src/ElectronNET.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{985D39A7
4646
..\.github\workflows\PR Validation.yml = ..\.github\workflows\PR Validation.yml
4747
..\.github\workflows\pr-comment.yml = ..\.github\workflows\pr-comment.yml
4848
..\.github\workflows\publish-wiki.yml = ..\.github\workflows\publish-wiki.yml
49-
..\.github\workflows\retry-test-jobs.yml.yml = ..\.github\workflows\retry-test-jobs.yml.yml
49+
..\.github\workflows\retry-test-jobs.yml = ..\.github\workflows\retry-test-jobs.yml
5050
..\.github\workflows\trailing-whitespace-check.yml = ..\.github\workflows\trailing-whitespace-check.yml
5151
EndProjectSection
5252
EndProject

0 commit comments

Comments
 (0)