Skip to content

Commit

Permalink
Merge pull request #3 from PixiEditor/ci-groups
Browse files Browse the repository at this point in the history
Use group outputs for errors
  • Loading branch information
CPKreu authored Sep 18, 2024
2 parents bedc00e + d9896a9 commit 20b63a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ms-store.json
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[
]
]
4 changes: 3 additions & 1 deletion utility/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ def main():
if valid:
print(f"✅ {filename} is valid")
else:
print(f"❌ {filename} is invalid: {error}")
print(f"::group::❌ {filename} is invalid")
print(error)
print("::endgroup::")
validation_failed = True

if validation_failed:
Expand Down

0 comments on commit 20b63a2

Please sign in to comment.