We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c5dfc0 commit bf74c35Copy full SHA for bf74c35
entrypoint.sh
@@ -9,6 +9,9 @@ BLUE='\033[0;34m'
9
RED='\033[0;31m'
10
11
npm i -g [email protected]
12
+echo "::group::Debug information"
13
+npm -g list --depth=1
14
+echo "::endgroup::"
15
16
declare -a FIND_CALL
17
declare -a COMMAND_DIRS COMMAND_FILES
@@ -155,9 +158,9 @@ fi
155
158
if [ "$CHECK_MODIFIED_FILES" = "yes" ]; then
156
159
157
160
echo -e "${BLUE}BASE_BRANCH: $7${NC}"
-
161
+
162
git config --global --add safe.directory $(pwd)
163
164
git fetch origin "${BASE_BRANCH}" --depth=1 > /dev/null
165
MASTER_HASH=$(git rev-parse origin/"${BASE_BRANCH}")
166
@@ -178,7 +181,7 @@ if [ "$CHECK_MODIFIED_FILES" = "yes" ]; then
178
181
done
179
182
180
183
check_additional_files
184
185
check_errors
186
187
else
0 commit comments