refactor: try to condense the action in fewer steps
Some checks failed
/ check (treefmt) (push) Successful in 4s
/ report-size (push) Failing after 1s
/ report-download-check (push) Has been skipped

This should make it easier to debug/maintain.
This commit is contained in:
Jalil David Salamé Messina 2025-07-11 18:23:06 +02:00
parent 1b14f63169
commit 78ce4d853d
Signed by: jalil
GPG key ID: F016B9E770737A0B
3 changed files with 79 additions and 51 deletions

View file

@ -12,6 +12,11 @@ error() {
log "\e[0;31m[WARN]:" "$@" "\e[0m"
}
panic() {
error "$@"
exit 1
}
group() {
echo "::group::$1"
}