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
7 changes: 7 additions & 0 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,15 @@ jobs:
- name: Verify quarto list tools does not show chromium
shell: bash
run: |
set +e
output=$(quarto list tools 2>&1)
exit_code=$?
set -e
echo "$output"
if [ "$exit_code" -ne 0 ]; then
echo "::error::'quarto list tools' exited with code $exit_code (see output above)"
exit 1
fi
if echo "$output" | grep -iq "chromium"; then
echo "::error::Deprecated chromium should not appear in 'quarto list tools' when not installed"
exit 1
Expand Down