mirror of
https://github.com/Azure/setup-kubectl
synced 2025-09-23 12:07:59 +00:00

Some checks failed
CodeQL Advanced / Analyze (javascript-typescript) (push) Failing after 3s
Integration test for setup-kubectl / Validate release and master branch (push) Failing after 3s
Run prettify / Prettier Check (push) Failing after 4s
Run unit tests. / build (push) Failing after 4s
Signed-off-by: Tatsat Mishra <tamishra@microsoft.com>
9 lines
No EOL
204 B
Text
9 lines
No EOL
204 B
Text
set +e
|
|
npm test
|
|
# Run format check
|
|
npm run format-check || {
|
|
echo ""
|
|
echo "❌ Formatting check failed."
|
|
echo "💡 Run 'npm run format' or 'prettier --write .' to fix formatting issues."
|
|
exit 1
|
|
} |