mirror of
https://github.com/grafana/grafana.git
synced 2025-09-26 12:53:57 +08:00

* Chore: fixes strict-null-error in Login > ChangePassword component * Chore: fixes strict-null-error in Login > LoginForm component * Chore: fixes strict-null-errors in OrgActionBar component and components that render it * Chore: fixes strict-null-errors in PageHeader component * Chore: fixes strict-null-errors in PermissionList components * Chore: fixes strict-null-errors in loki language provider * Chore: fixes strict-null-errors in loki datasource * Chore: fixes strict-null-errors in panel_editor > EditorTabBody component * Chore: fixes strict-null-errors in flatten utility * Chore: fixes strict-null-errors in search component * Chore: fixes strict-null-errors in SharedPreferences component * Chore: fixes strict-null-errors in MetricSelect component * Chore: updates type on a param to type on argument * Chore: updates strict-null errors count from 791 to 757 * Chore: updates PageHeader - adds null checks * Chore: updates PageHeader - updates null checks * Chore: updates PageHeader null checks to longer format * Chore: updates strict-null fixes * Chore: updates error count limit in ci-frontend-metrics
50 lines
1.7 KiB
Bash
Executable File
50 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo -e "Collecting code stats (typescript errors & more)"
|
|
|
|
|
|
|
|
ERROR_COUNT_LIMIT=728
|
|
DIRECTIVES_LIMIT=172
|
|
CONTROLLERS_LIMIT=139
|
|
|
|
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strictNullChecks true | grep -oP 'Found \K(\d+)')"
|
|
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)"
|
|
|
|
|
|
if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then
|
|
echo -e "Typescript strict errors $ERROR_COUNT exceeded $ERROR_COUNT_LIMIT so failing build"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$DIRECTIVES" -gt $DIRECTIVES_LIMIT ]; then
|
|
echo -e "Directive count $DIRECTIVES exceeded $DIRECTIVES_LIMIT so failing build"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$CONTROLLERS" -gt $CONTROLLERS_LIMIT ]; then
|
|
echo -e "Controllers count $CONTROLLERS exceeded $CONTROLLERS_LIMIT so failing build"
|
|
exit 1
|
|
fi
|
|
|
|
echo -e "Typescript errors: $ERROR_COUNT"
|
|
echo -e "Directives: $DIRECTIVES"
|
|
echo -e "Controllers: $CONTROLLERS"
|
|
echo -e "Stories: $STORIES_COUNT"
|
|
echo -e "Documented stories: $MDX_COUNT"
|
|
echo -e "Legacy forms: $LEGACY_FORMS"
|
|
|
|
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
|
./scripts/ci-metrics-publisher.sh \
|
|
grafana.ci-code.strictErrors="$ERROR_COUNT" \
|
|
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" \
|
|
grafana.ci-code.legacyForms="$LEGACY_FORMS"
|
|
fi
|