#!/bin/bash # Frontend CI test script set -e cd "$(dirname "$0")/../../frontend" echo "Installing dependencies..." npm ci echo "Running linter..." npm run lint echo "Running tests with coverage..." npm run test:coverage echo "Frontend tests passed!"