28 lines
710 B
Bash
Executable file
28 lines
710 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
if [ -f "$root/services/core/go.mod" ]; then
|
|
if command -v go >/dev/null 2>&1; then
|
|
(cd "$root/services/core" && go vet ./...)
|
|
else
|
|
echo "skip services/core: go not found"
|
|
fi
|
|
fi
|
|
|
|
if [ -f "$root/apps/web/package.json" ]; then
|
|
if command -v npm >/dev/null 2>&1; then
|
|
(cd "$root/apps/web" && npm run lint --if-present)
|
|
else
|
|
echo "skip apps/web: npm not found"
|
|
fi
|
|
fi
|
|
|
|
if [ -f "$root/apps/mobile/pubspec.yaml" ]; then
|
|
if command -v flutter >/dev/null 2>&1; then
|
|
(cd "$root/apps/mobile" && flutter analyze --no-fatal-infos)
|
|
else
|
|
echo "skip apps/mobile: flutter not found"
|
|
fi
|
|
fi
|