https://github.com/grafana/grafana
Raw File
Tip revision: 21ba1469b57e2146e0a42507ac08d2ca25b8b98e authored by renovate[bot] on 26 July 2022, 14:21:26 UTC
Update linguijs monorepo to v3.14.0 (#52811)
Tip revision: 21ba146
validate-devenv-dashboards.sh
#!/bin/bash

# Temporary - remove this script once the dashboard schema are mature

# Remove the appropriate ellipses from the schema to check for unspecified
# fields in the artifacts (validating "open")

# Run from root of grafana repo
CMD=${CLI:-bin/darwin-amd64/grafana-cli}
FILES=$(grep -rl '"schemaVersion": 30' devenv)
for DASH in ${FILES}; do echo "${DASH}"; ${CMD} cue validate-resource --dashboard "${DASH}"; done
back to top