2019-03-13 04:10:26 -05:00
|
|
|
#!/bin/bash
|
2020-09-07 11:39:47 -05:00
|
|
|
set -e
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2021-11-11 06:41:15 -06:00
|
|
|
ERROR_COUNT="0"
|
2021-08-23 03:08:01 -05:00
|
|
|
ACCESSIBILITY_ERRORS="$(grep -oP '\"errors\":(\d+),' pa11y-ci-results.json | grep -oP '\d+')"
|
2020-09-07 06:17:03 -05:00
|
|
|
DIRECTIVES="$(grep -r -o directive public/app/ | wc -l)"
|
|
|
|
CONTROLLERS="$(grep -r -oP 'class .*Ctrl' public/app/ | wc -l)"
|
|
|
|
STORIES_COUNT="$(find ./packages/grafana-ui/src/components -name "*.story.tsx" | wc -l)"
|
|
|
|
MDX_COUNT="$(find ./packages/grafana-ui/src/components -name "*.mdx" | wc -l)"
|
|
|
|
LEGACY_FORMS="$(grep -r -oP 'LegacyForms;' public/app | wc -l)"
|
2022-04-04 05:43:23 -05:00
|
|
|
|
|
|
|
# This is also included in the betterer stats, but we maintain it to keep metric history
|
2022-02-09 06:41:39 -06:00
|
|
|
ENZYME_TEST_COUNT="$(grep -l -R --include="*.test.*" "from 'enzyme'" public packages | wc -l)"
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2021-10-27 08:21:07 -05:00
|
|
|
STRICT_LINT_RESULTS="$(yarn run eslint --rule '@typescript-eslint/no-explicit-any: ["error"]' --format unix --ext .ts,.tsx ./public || true)"
|
2021-02-15 04:15:34 -06:00
|
|
|
STRICT_LINT_EXPLICIT_ANY="$(echo "${STRICT_LINT_RESULTS}" | grep -o "no-explicit-any" | wc -l)"
|
|
|
|
|
2021-06-29 02:29:26 -05:00
|
|
|
TOTAL_BUNDLE="$(du -sk ./public/build | cut -f1)"
|
2021-10-18 07:17:02 -05:00
|
|
|
OUTDATED_DEPENDENCIES="$(yarn outdated --all | grep -oP '[[:digit:]]+ *(?= dependencies are out of date)')"
|
2021-11-11 06:41:15 -06:00
|
|
|
## Disabled due to yarn PnP update breaking npm audit
|
|
|
|
#VULNERABILITY_AUDIT="$(yarn npm audit --all --recursive --json)"
|
|
|
|
#LOW_VULNERABILITIES="$(echo "${VULNERABILITY_AUDIT}" | grep -o -i '"severity":"low"' | wc -l)"
|
|
|
|
#MED_VULNERABILITIES="$(echo "${VULNERABILITY_AUDIT}" | grep -o -i '"severity":"moderate"' | wc -l)"
|
|
|
|
#HIGH_VULNERABILITIES="$(echo "${VULNERABILITY_AUDIT}" | grep -o -i '"severity":"high"' | wc -l)"
|
|
|
|
#CRITICAL_VULNERABILITIES="$(echo "${VULNERABILITY_AUDIT}" | grep -o -i '"severity":"critical"' | wc -l)"
|
2021-06-29 02:29:26 -05:00
|
|
|
|
2019-03-29 09:32:58 -05:00
|
|
|
echo -e "Typescript errors: $ERROR_COUNT"
|
2021-08-23 03:08:01 -05:00
|
|
|
echo -e "Accessibility errors: $ACCESSIBILITY_ERRORS"
|
2019-03-29 09:32:58 -05:00
|
|
|
echo -e "Directives: $DIRECTIVES"
|
|
|
|
echo -e "Controllers: $CONTROLLERS"
|
2020-03-18 02:22:46 -05:00
|
|
|
echo -e "Stories: $STORIES_COUNT"
|
|
|
|
echo -e "Documented stories: $MDX_COUNT"
|
2020-04-02 09:18:06 -05:00
|
|
|
echo -e "Legacy forms: $LEGACY_FORMS"
|
2021-02-15 04:15:34 -06:00
|
|
|
echo -e "TS Explicit any: $STRICT_LINT_EXPLICIT_ANY"
|
2021-06-29 02:29:26 -05:00
|
|
|
echo -e "Total bundle folder size: $TOTAL_BUNDLE"
|
|
|
|
echo -e "Total outdated dependencies: $OUTDATED_DEPENDENCIES"
|
|
|
|
echo -e "Low vulnerabilities: $LOW_VULNERABILITIES"
|
|
|
|
echo -e "Med vulnerabilities: $MED_VULNERABILITIES"
|
|
|
|
echo -e "High vulnerabilities: $HIGH_VULNERABILITIES"
|
2021-10-12 08:45:03 -05:00
|
|
|
echo -e "Critical vulnerabilities: $CRITICAL_VULNERABILITIES"
|
2022-02-09 06:41:39 -06:00
|
|
|
echo -e "Number of enzyme tests: $ENZYME_TEST_COUNT"
|
2019-03-13 04:10:26 -05:00
|
|
|
|
2022-04-04 05:43:23 -05:00
|
|
|
BETTERER_STATS=""
|
|
|
|
while read -r name value
|
|
|
|
do
|
|
|
|
BETTERER_STATS+=$'\n '
|
|
|
|
BETTERER_STATS+="\"grafana.ci-code.betterer.${name}\": \"${value}\","
|
|
|
|
done <<< "$(yarn betterer:stats)"
|
|
|
|
|
2020-09-07 06:17:03 -05:00
|
|
|
echo "Metrics: {
|
2022-04-04 05:43:23 -05:00
|
|
|
$BETTERER_STATS
|
2020-09-07 06:17:03 -05:00
|
|
|
\"grafana.ci-code.strictErrors\": \"${ERROR_COUNT}\",
|
2021-08-23 04:36:39 -05:00
|
|
|
\"grafana.ci-code.accessibilityErrors\": \"${ACCESSIBILITY_ERRORS}\",
|
2020-09-07 06:17:03 -05:00
|
|
|
\"grafana.ci-code.directives\": \"${DIRECTIVES}\",
|
|
|
|
\"grafana.ci-code.controllers\": \"${CONTROLLERS}\",
|
|
|
|
\"grafana.ci-code.grafana-ui.stories\": \"${STORIES_COUNT}\",
|
|
|
|
\"grafana.ci-code.grafana-ui.mdx\": \"${MDX_COUNT}\",
|
2021-02-15 04:15:34 -06:00
|
|
|
\"grafana.ci-code.legacyForms\": \"${LEGACY_FORMS}\",
|
2021-06-29 02:29:26 -05:00
|
|
|
\"grafana.ci-code.strictLint.noExplicitAny\": \"${STRICT_LINT_EXPLICIT_ANY}\",
|
|
|
|
\"grafana.ci-code.bundleFolderSize\": \"${TOTAL_BUNDLE}\",
|
2022-02-09 09:55:15 -06:00
|
|
|
\"grafana.ci-code.dependencies.outdated\": \"${OUTDATED_DEPENDENCIES}\",
|
2022-02-09 06:41:39 -06:00
|
|
|
\"grafana.ci-code.enzymeTests\": \"${ENZYME_TEST_COUNT}\"
|
2020-09-07 06:17:03 -05:00
|
|
|
}"
|