mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
12 lines
346 B
Plaintext
Executable File
12 lines
346 B
Plaintext
Executable File
# Run frontend checks
|
|
echo "Running frontend checks..."
|
|
cd frontend
|
|
npm run lint
|
|
npm run check-translation-completeness
|
|
npx lint-staged
|
|
|
|
# Run backend pre-commit
|
|
echo "Running backend pre-commit..."
|
|
cd ..
|
|
pre-commit run --files openhands/**/* evaluation/**/* tests/**/* --show-diff-on-failure --config ./dev_config/python/.pre-commit-config.yaml
|