Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/playwright-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ jobs:
# The names arrive through the environment rather than being pasted into
# the script, and are split into an array without pathname expansion, so
# no input value is ever interpreted as shell or as a glob.
[[ -n "${PLAYWRIGHT_PROJECTS// /}" ]] || { echo "The project-name input is empty; nothing to run." >&2; exit 1; }
Comment thread
TallblokeUK marked this conversation as resolved.
read -ra projects <<< "$PLAYWRIGHT_PROJECTS"
project_args=()
for project in "${projects[@]}"; do
Expand Down
Loading