mirror of
https://github.com/actions/checkout.git
synced 2024-10-12 14:21:48 +03:00
18 lines
596 B
Bash
Executable File
18 lines
596 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$(git status --porcelain)" != "" ]]; then
|
|
echo ----------------------------------------
|
|
echo git status
|
|
echo ----------------------------------------
|
|
git status
|
|
echo ----------------------------------------
|
|
echo git diff
|
|
echo ----------------------------------------
|
|
git diff
|
|
echo ----------------------------------------
|
|
echo Troubleshooting
|
|
echo ----------------------------------------
|
|
echo "::error::Unstaged changes detected. Locally try running: git clean -ffdx && npm ci && npm run format && npm run build"
|
|
exit 1
|
|
fi
|