ci: test
parent
d644e0b8a7
commit
bab1ca54e4
15
script/hooks
15
script/hooks
|
|
@ -1,15 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
if [ ! -d ".git" ]; then
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
mkdir -p .git/hooks
|
|
||||||
|
|
||||||
cat > .git/hooks/pre-push << 'EOF'
|
|
||||||
#!/bin/sh
|
|
||||||
bun run typecheck
|
|
||||||
EOF
|
|
||||||
|
|
||||||
chmod +x .git/hooks/pre-push
|
|
||||||
echo "✅ Pre-push hook installed"
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
@echo off
|
|
||||||
|
|
||||||
if not exist ".git" (
|
|
||||||
exit /b 0
|
|
||||||
)
|
|
||||||
|
|
||||||
if not exist ".git\hooks" (
|
|
||||||
mkdir ".git\hooks"
|
|
||||||
)
|
|
||||||
|
|
||||||
(
|
|
||||||
echo #!/bin/sh
|
|
||||||
echo bun run typecheck
|
|
||||||
) > ".git\hooks\pre-push"
|
|
||||||
|
|
||||||
echo ✅ Pre-push hook installed
|
|
||||||
|
|
@ -6,8 +6,9 @@
|
||||||
"dependsOn": ["^build"],
|
"dependsOn": ["^build"],
|
||||||
"outputs": ["dist/**"]
|
"outputs": ["dist/**"]
|
||||||
},
|
},
|
||||||
"test": {
|
"opencode#test": {
|
||||||
"dependsOn": ["^test"]
|
"dependsOn": ["^build"],
|
||||||
|
"outputs": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue