-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheck.sh
executable file
·31 lines (23 loc) · 979 Bytes
/
check.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
#!/usr/bin/env bash
source ./_scripts/common.sh
activate_conda_environment
header "Check shell scripts with ShellCheck"
SHELL_SCRIPTS=$(find . -maxdepth 2 -iname "*.sh")
echo "${SHELL_SCRIPTS[@]}" 1>&2
# shellcheck disable=2068 # splitting intended
shellcheck ${SHELL_SCRIPTS[@]} || exit $?
header "Check source files for trailing whitespace"
check_trailing_whitespace || exit $?
header "Check if packages up to date: conda"
check_conda_updated || exit $?
header "Check if packages up to date: bundler"
check_bundler_updated || exit $?
header "Check _site/ with HTML-Proofer"
echo "You may need to run ./build.sh first" 1>&2
HTMLPROOFER_OPTIONS=("--disable-external")
# shellcheck disable=2068 # splitting intended
bundle exec htmlproofer ${HTMLPROOFER_OPTIONS[@]} _site || exit $?
header "Check URL schema"
[[ -f "./_site/2022/06/25/migrating-to-jekyll.html" ]] || exit 1
header "Check for deprecation warnings with Jekyll doctor"
bundle exec jekyll doctor || exit $?