mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
* Chore: More TypeScript strict fixes * Chore: Use filter instead of reduce to fix TypeScript error * Chore: Retype AzureResultFormat as string * Chore: Account for getBlocks() poor typings of reduce * Chore: Need to explicitly check for undefined here since '' is falsey
14 lines
375 B
Bash
Executable File
14 lines
375 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo -e "Collecting code stats (typescript errors & more)"
|
|
|
|
ERROR_COUNT_LIMIT=41
|
|
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')"
|
|
|
|
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
|
|
|