1
0
mirror of https://github.com/dcarrillo/docker-nginx.git synced 2025-07-01 19:09:25 +00:00

Add linting at github actions

This commit is contained in:
2020-03-07 19:08:09 +01:00
parent 7431aeb126
commit ead6a1bf13
4 changed files with 11 additions and 1 deletions

View File

@ -6,11 +6,13 @@ if [ x"$DEBUG" = xtrue ]; then
set -x
fi
# shellcheck disable=SC2039
trap _catch_err ERR
trap _cleanup EXIT
ALPINE_VERSION="alpine:3.11"
LOCAL_DIR="$(cd "$(dirname "$0")" ; pwd -P)"
# shellcheck disable=SC1090
. "$LOCAL_DIR"/../conf.env
TMP_DIR=$(mktemp -d)