Skip to content

Commit e1a0798

Browse files
🩹 [Refactor]: Update path handling in Test-ModuleLocal workflow for consistency and clarity
1 parent 84cf60f commit e1a0798

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

‎.github/workflows/Test-ModuleLocal.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ jobs:
123123
TestResult_Enabled: true
124124
CodeCoverage_Enabled: true
125125
CodeCoverage_OutputFormat: JaCoCo
126-
Path: ${{ inputs.TestFolderPath }}
127-
Run_Path: outputs/module
128-
WorkingDirectory: ${{ inputs.WorkingDirectory }}
126+
Path: ${{ inputs.WorkingDirectory }}/${{ inputs.TestFolderPath }}
127+
Run_Path: ${{ inputs.WorkingDirectory }}/outputs/module
128+
# WorkingDirectory: ${{ inputs.WorkingDirectory }}
129129

130130
- name: Failed test
131131
if: steps.test.outcome != 'success'

‎.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ jobs:
197197
shell: pwsh
198198
run: |
199199
[pscustomobject]@{
200-
TestModule = '${{ needs.TestModule.result }}'
201-
TestModuleLocal = '${{ needs.TestModuleLocal.result }}'
200+
TestModule = '${{ needs.Test-Module.result }}'
201+
TestModuleLocal = '${{ needs.Test-ModuleLocal.result }}'
202202
}
203203
204204
# TestModuleStatus:

0 commit comments

Comments
 (0)