We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf0d4d commit 541d687Copy full SHA for 541d687
.github/workflows/test.yml
@@ -221,13 +221,12 @@ jobs:
221
- *setup-node
222
- *install-dependencies
223
- *run-ui-tests
224
- - name: Move screenshots to artifact folder
225
- if: always()
+ - name: Print github.workspace and list screenshot folders
226
run: |
227
- mkdir -p .vscode-test/test-resources/screenshots
228
- if [ -d "$TMPDIR/screenshots" ]; then
229
- cp -R "$TMPDIR/screenshots/." .vscode-test/test-resources/screenshots/
230
- fi
+ echo "github.workspace: ${{ github.workspace }}"
+ echo "Listing all screenshots folders:"
+ find ${{ github.workspace }} -type d -name screenshots || true
+ shell: bash
231
- name: Upload Screenshots
232
uses: actions/upload-artifact@v4
233
if: always()
0 commit comments