diff --git a/.github/linters/.eslintrc.yml b/.github/linters/.eslintrc.yml index a8c4c5df..2bc8d6ee 100644 --- a/.github/linters/.eslintrc.yml +++ b/.github/linters/.eslintrc.yml @@ -12,6 +12,7 @@ env: browser: true es6: true + jest: true ############### # Global Vars # diff --git a/lib/linter.sh b/lib/linter.sh index aa83cc95..f17db183 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -1516,7 +1516,7 @@ Eslint() ################################ # Lint the file with the rules # ################################ - LINT_CMD=$(eslint -c "$JAVASCRIPT_LINTER_RULES" "$FILE" 2>&1) + LINT_CMD=$(cd "$GITHUB_WORKSPACE" || exit; eslint -c "$JAVASCRIPT_LINTER_RULES" "$FILE" 2>&1) ####################### # Load the error code # @@ -1615,7 +1615,7 @@ StandardLint() ################################ echo " - Utilizing Env:[$ENV_STRING]" # shellcheck disable=SC2086 - STANDARD_LINT_CMD=$(standard $ENV_STRING "$FILE" 2>&1) + STANDARD_LINT_CMD=$(cd "$GITHUB_WORKSPACE" || exit; standard $ENV_STRING "$FILE" 2>&1) ####################### # Load the error code #