20 lines
561 B
Bash
20 lines
561 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
echo "Running release smoke checks for learning_ai_invt_trdg"
|
|
|
|
pnpm --filter @bytelyst/trading-web typecheck
|
|
pnpm --filter @bytelyst/trading-web build
|
|
(
|
|
cd web
|
|
pnpm vitest run \
|
|
src/components/Login.dom.test.tsx \
|
|
src/components/ResetPassword.dom.test.tsx \
|
|
src/components/ProductAccessibilityGate.dom.test.tsx \
|
|
src/components/ChatControl.dom.test.tsx \
|
|
src/components/EntryForm.dom.test.tsx \
|
|
src/hooks/useWebSocket.dom.test.tsx \
|
|
src/components/AuthContext.dom.test.tsx
|
|
)
|
|
pnpm --filter @bytelyst/trading-mobile typecheck
|