Build testdata frontend standalone (#75833)

This commit is contained in:
Andres Martinez Gotor
2023-10-16 17:31:43 +02:00
committed by GitHub
parent 8c456ec24b
commit 157ea31b03
27 changed files with 492 additions and 18 deletions
+2 -1
View File
@@ -4,6 +4,7 @@
PACKAGES=$(ls -d ./packages/*/)
EXIT_CODE=0
GITHUB_MESSAGE=""
SKIP_PACKAGES=("grafana-eslint-rules" "grafana-plugin-configs")
# Loop through the packages
while IFS=" " read -r -a package; do
@@ -16,7 +17,7 @@ while IFS=" " read -r -a package; do
CURRENT="./pr/$PACKAGE_PATH"
# Temporarily skipping these packages as they don't have any exposed static typing
if [[ "$PACKAGE_PATH" == 'grafana-eslint-rules' ]]; then
if [[ ${SKIP_PACKAGES[@]} =~ "$PACKAGE_PATH" ]]; then
continue
fi