10 lines
187 B
Bash
Executable file
10 lines
187 B
Bash
Executable file
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
# If test-db is not running with docker
|
|
if ! docker ps | grep -q test-db; then
|
|
npm run start:pg
|
|
fi
|
|
|
|
pnpm -r test
|
|
pnpm -r lint:fix
|