mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-09 23:08:04 -05:00
10 lines
305 B
Plaintext
Executable File
10 lines
305 B
Plaintext
Executable File
# Run frontend checks
|
|
echo "Running frontend checks..."
|
|
cd frontend
|
|
npx lint-staged
|
|
|
|
# Run backend pre-commit
|
|
echo "Running backend pre-commit..."
|
|
cd ..
|
|
poetry run pre-commit run --files openhands/**/* evaluation/**/* tests/**/* --show-diff-on-failure --config ./dev_config/python/.pre-commit-config.yaml
|