mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
20 lines
615 B
Bash
20 lines
615 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo -e "Collecting code stats (typescript errors & more)"
|
||
|
|
||
|
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --noImplicitAny 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)"
|
||
|
|
||
|
echo -e "Typescript errors: $ERROR_COUNT"
|
||
|
echo -e "Directives: $DIRECTIVES"
|
||
|
echo -e "Controllers: $CONTROLLERS"
|
||
|
|
||
|
./scripts/ci-metrics-publisher.sh \
|
||
|
grafana.ci-code.noImplicitAny=$ERROR_COUNT \
|
||
|
grafana.ci-code.directives=$DIRECTIVES \
|
||
|
grafana.ci-code.controllers=$CONTROLLERS \
|
||
|
|
||
|
|
||
|
|