Files
MOHPortal/scripts/run-ci-tests.sh
ReachableCEO 252775faf3
Some checks failed
CI / Backend Tests (push) Failing after 2m41s
CI / Frontend Tests (push) Successful in 2m14s
CI / Build Docker Images (push) Has been skipped
chore: sync infra docs and coverage
2025-10-16 22:41:22 -05:00

17 lines
418 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
echo ">>> Running backend lint locally"
(cd backend && npm run lint)
echo ">>> Running frontend lint locally"
(cd frontend && npm run lint)
echo ">>> Running backend test suite"
(cd backend && npm test -- --runInBand --coverage)
echo ">>> Running frontend test suite"
(cd frontend && npm test -- --watchAll=false --coverage)
echo "All CI test stages completed successfully."