Repository improvements #1
lint.yml
on: pull_request
ShellCheck
15s
MarkdownLint
17s
YamlLint
15s
ActionLint
8s
Annotations
10 errors
ShellCheck:
tests/start_local_test.sh#L28
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:28:- mkdir ${TEST_DIR}
tests/start_local_test.sh:29:- cd ${TEST_DIR}
tests/start_local_test.sh:30:- cp ${SCRIPT_DIR}/../start-local.sh ${TEST_DIR}
tests/start_local_test.sh:31:- sh ${TEST_DIR}/start-local.sh
tests/start_local_test.sh:32:- source ${TEST_DIR}/${DEFAULT_DIR}/.env
tests/start_local_test.sh:33:- cd ${CURRENT_DIR}
tests/start_local_test.sh:28:+ mkdir "${TEST_DIR}"
tests/start_local_test.sh:29:+ cd "${TEST_DIR}" || exit
tests/start_local_test.sh:30:+ cp "${SCRIPT_DIR}"/../start-local.sh "${TEST_DIR}"
tests/start_local_test.sh:31:+ sh "${TEST_DIR}"/start-local.sh
tests/start_local_test.sh:32:+ source "${TEST_DIR}"/${DEFAULT_DIR}/.env
tests/start_local_test.sh:33:+ cd "${CURRENT_DIR}" || exit
|
ShellCheck:
tests/start_local_test.sh#L37
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:37:- cd ${TEST_DIR}/${DEFAULT_DIR}
tests/start_local_test.sh:37:+ cd "${TEST_DIR}"/${DEFAULT_DIR} || exit
|
ShellCheck:
tests/start_local_test.sh#L40
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:40:- cd ${SCRIPT_DIR}
tests/start_local_test.sh:41:- rm -rf ${TEST_DIR}
tests/start_local_test.sh:42:- cd ${CURRENT_DIR}
tests/start_local_test.sh:40:+ cd "${SCRIPT_DIR}" || exit
tests/start_local_test.sh:41:+ rm -rf "${TEST_DIR}"
tests/start_local_test.sh:42:+ cd "${CURRENT_DIR}" || exit
|
ShellCheck:
tests/start_local_test.sh#L46
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:46:- assert_file_exists ${TEST_DIR}/${DEFAULT_DIR}/docker-compose.yml
tests/start_local_test.sh:46:+ assert_file_exists "${TEST_DIR}"/${DEFAULT_DIR}/docker-compose.yml
|
ShellCheck:
tests/start_local_test.sh#L50
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:50:- assert_file_exists ${TEST_DIR}/${DEFAULT_DIR}/.env
tests/start_local_test.sh:50:+ assert_file_exists "${TEST_DIR}"/${DEFAULT_DIR}/.env
|
ShellCheck:
tests/start_local_test.sh#L55
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:55:- assert_equals "200" $result
tests/start_local_test.sh:55:+ assert_equals "200" "$result"
|
ShellCheck:
tests/start_local_test.sh#L60
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:60:- assert_equals "200" $result
tests/start_local_test.sh:60:+ assert_equals "200" "$result"
|
ShellCheck:
tests/start_local_test.sh#L65
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:65:- assert_equals "200" $result
tests/start_local_test.sh:65:+ assert_equals "200" "$result"
|
ShellCheck:
tests/start_local_test.sh#L70
[shellcheck (suggestion)] reported by reviewdog 🐶
Raw Output:
tests/start_local_test.sh:70:- -u elastic:${ES_LOCAL_PASSWORD} \
tests/start_local_test.sh:70:+ -u elastic:"${ES_LOCAL_PASSWORD}" \
|
ShellCheck
reviewdog: Too many results (annotations) in diff.
You may miss some annotations due to GitHub limitation for annotation created by logging command.
Please check GitHub Actions log console to see all results.
Limitation:
- 10 warning annotations and 10 error annotations per step
- 50 annotations per job (sum of annotations from all the steps)
- 50 annotations per run (separate from the job annotations, these annotations aren't created by users)
Source: https://github.com/orgs/community/discussions/26680#discussioncomment-3252835
|