From 9436c53771b4553f5215b5b909a5b2b04b3ba537 Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 23 Jan 2023 14:16:43 +0100 Subject: [PATCH] Added debug for prettier test result in the log --- entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index fc3de7a..28affa1 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -74,6 +74,8 @@ echo "Files:" prettier $INPUT_PRETTIER_OPTIONS \ || { PRETTIER_RESULT=$?; echo "Problem running prettier with $INPUT_PRETTIER_OPTIONS"; exit 1; } +echo "Prettier result: $PRETTIER_RESULT" + # Removing the node_modules folder, so it doesn't get committed if it is not added in gitignore if $INPUT_CLEAN_NODE_FOLDER; then echo "Deleting node_modules/ folder..."