-
Notifications
You must be signed in to change notification settings - Fork 0
/
entr_script.sh
74 lines (57 loc) · 1.03 KB
/
entr_script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
readonly SCRIPT_NAME="$0"
readonly PROJECT_ROOT="$1"
shift 1
readonly TEST_TARGETS="$*"
function main()
{
tput reset
ensure_project_root_was_informed "$PROJECT_ROOT"
run_tests
echo
print_line
run_git_status_if_available
echo
date
}
function run_tests()
{
echo "Running tests..."
print_line
if [ -z "$TEST_TARGETS" ]
then
npm test && npm run lint
else
NODE_ENV=test "$PROJECT_ROOT/node_modules/.bin/mocha" "$TEST_TARGETS" &&
npm run lint
fi
}
function run_git_status_if_available()
{
if [ -x "$(command -v git)" ]
then
echo "Running GIT Status..."
print_line
git -C "$PROJECT_ROOT" status -sb
fi
}
function ensure_project_root_was_informed()
{
if [ -z "$1" ]
then
echo -e "\n\tERROR\n"
echo -e "Missing project root path!\n"
print_usage
exit 1
fi
}
function print_usage()
{
echo -e "\nUsage:"
echo " $SCRIPT_NAME path/to/project/root"
}
function print_line()
{
echo "=================================================="
}
main "$@"