mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-14 03:30:19 +00:00
14 lines
228 B
Bash
Executable File
14 lines
228 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
[ "${HUSKY-}" = "0" ] && exit 0
|
|
|
|
export PATH="node_modules/.bin:$PATH"
|
|
|
|
BRANCH=$(git branch --show-current)
|
|
if [ "$BRANCH" = "dev" ] || [ "$BRANCH" = "main" ]; then
|
|
npm run type-check
|
|
fi
|
|
|
|
lint-staged
|