Be able to configure the server startup waiting duration #138
reviewdog.yml
on: pull_request
runner / shellcheck
8s
runner / hadolint
3s
runner / misspell
11s
Annotations
2 errors and 3 warnings
runner / shellcheck:
entrypoint.sh#L18
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
entrypoint.sh:18:-git config --global --add safe.directory $GITHUB_WORKSPACE
entrypoint.sh:18:+git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
runner / shellcheck:
entrypoint.sh#L40
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
entrypoint.sh:40:-FILES="$(git ls-files | ghglob ${INPUT_PATTERNS})"
entrypoint.sh:40:+FILES="$(git ls-files | ghglob "${INPUT_PATTERNS}")"
|
runner / shellcheck:
entrypoint.sh#L2
[shellcheck] reported by reviewdog 🐶
In POSIX sh, set option pipefail is undefined. [SC3040](https://github.com/koalaman/shellcheck/wiki/SC3040)
Raw Output:
./entrypoint.sh:2:9:warning:In POSIX sh, set option pipefail is undefined. [SC3040](https://github.com/koalaman/shellcheck/wiki/SC3040)
|
runner / shellcheck:
entrypoint.sh#L18
[shellcheck] reported by reviewdog 🐶
Double quote to prevent globbing and word splitting. [SC2086](https://github.com/koalaman/shellcheck/wiki/SC2086)
Raw Output:
./entrypoint.sh:18:42:info:Double quote to prevent globbing and word splitting. [SC2086](https://github.com/koalaman/shellcheck/wiki/SC2086)
|
runner / shellcheck:
entrypoint.sh#L40
[shellcheck] reported by reviewdog 🐶
Double quote to prevent globbing and word splitting. [SC2086](https://github.com/koalaman/shellcheck/wiki/SC2086)
Raw Output:
./entrypoint.sh:40:32:info:Double quote to prevent globbing and word splitting. [SC2086](https://github.com/koalaman/shellcheck/wiki/SC2086)
|