Skip to content

Commit 936e86e

Browse files
committed
chore(debug): Add print statements to debug failing tests
1 parent 9251236 commit 936e86e

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

action.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,3 +167,19 @@ runs:
167167
shell: pwsh
168168
run: |
169169
"$env:USERPROFILE\.local\bin" | Out-File -FilePath $env:GITHUB_PATH -Append
170+
- name: DEBUG - Powershell
171+
shell: pwsh
172+
run: |
173+
Write-Output "Printing '\$GITHUB_PATH' content:"
174+
Get-Content $env:GITHUB_PATH;
175+
176+
Write-Output "Printing '~/.local/bin' content:"
177+
Get-ChildItem ~/.local/bin;
178+
- name: DEBUG - Bash
179+
shell: bash
180+
run: |
181+
echo "Printing '\$GITHUB_PATH' content:"
182+
cat $GITHUB_PATH;
183+
184+
echo "Printing '~/.local/bin' content:"
185+
ls -l ~/.local/bin;

0 commit comments

Comments
 (0)