We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b68a220 commit eb927faCopy full SHA for eb927fa
1 file changed
.husky/pre-push
@@ -2,6 +2,12 @@
2
3
set -eu
4
5
+if ! make webui-test
6
+then
7
+ echo "There are some WebUI test issues."
8
+ exit 1
9
+fi
10
+
11
if ! cargo sqlx prepare --check
12
then
13
echo "Database schema snapshot should be updated."
@@ -24,7 +30,7 @@ fi
24
30
25
31
if ! cargo test
26
32
27
- echo "There are some test issues."
33
+ echo "There are some API test issues."
28
34
exit 1
29
35
fi
36
0 commit comments