Skip to content

Commit 6f64a47

Browse files
authored
fix: Add debug statements (#653)
Trying to determine if I got the varname wrong.
1 parent 7af2025 commit 6f64a47

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/playwright.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ jobs:
5454
id: get_workspaces
5555
# For PRs, compare against the origin's version of the base branch.
5656
# For pushes, compare against the commit before the push.
57-
run: bash samples/find-changes.sh ${{ github.event_name == 'pull_request' && format('origin/{0}', github.base_ref) || github.event.before }}
57+
run: |
58+
bash samples/find-changes.sh ${{ github.event_name == 'pull_request' && format('origin/{0}', github.base_ref) || github.event.before }}
59+
echo "Let's verify that we got the varname wrong (should be changed_workspaces)"
60+
echo "Affected workspaces (worng): ${{ steps.get_workspaces.outputs.affected_workspaces }}"
61+
echo "Changed workspaces (ding ding ding): ${{ steps.get_workspaces.outputs.changed_workspaces }}"
5862
5963
- name: Setup Node.js
6064
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)