From 45f4ad477d0ff4f02dcd3ffc1dd4fbb6c12db25a Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 17 Feb 2020 09:38:17 +0100 Subject: [PATCH] [TESTING] Added git fetch for optimal operation --- entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 35bafca..99de4d8 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -18,6 +18,9 @@ EOF git config --global user.name "GitHub Actions" } +# The remote changes should already be fetched, but as there is #4 this could resolve the problem +git fetch + echo "Installing prettier..." npm install --silent --global prettier echo "Prettifing files..."