Skip to content

Add test to render and lint dashboards #126

Add test to render and lint dashboards

Add test to render and lint dashboards #126

Workflow file for this run

# This is a GitHub workflow defining a set of jobs with a set of steps.
# ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
#
name: Tests
on:
pull_request:
paths-ignore:
- "docs/**"
- ".github/workflows/*.yaml"
- "!.github/workflows/test.yaml"
push:
paths-ignore:
- "docs/**"
- ".github/workflows/*.yaml"
- "!.github/workflows/test.yaml"
branches-ignore:
- "dependabot/**"
- "pre-commit-ci-update-config"
tags: ["**"]
workflow_dispatch:
jobs:
render-dashboards:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
jsonnet-version: [latest]
steps:
- uses: actions/checkout@v4
# Based on https://github.com/zendesk/setup-jsonnet/blob/master/install-jsonnet.sh
- name: Install jsonnet (go-jsonnet)
run: |
go install "github.com/google/go-jsonnet/cmd/jsonnet@${{ matrix.jsonnet-version }}"
echo "$HOME/go/bin" >> "$GITHUB_PATH"
- run: jsonnet --version
- name: Render dashboards
run: |
mkdir rendered-dashboards
dashboard_folders="dashboards global-dashboards"
for file in `find $dashboard_folders -name '*.jsonnet'`
do
jsonnet -J vendor --tla-code 'datasources=["prometheus-test"]' --output-file rendered-dashboards/`basename $file` $file
done
- name: Upload rendered dashboards
uses: actions/upload-artifact@v4
with:
name: rendered-dashboards-${{ github.run_attempt }}
path: ./rendered-dashboards
lint-dashboards:
runs-on: ubuntu-22.04
needs: [render-dashboards]
steps:
- name: Download rendered dashboards
uses: actions/download-artifact@v4
with:
name: rendered-dashboards-${{ github.run_attempt }}
path: ./rendered-dashboards
- name: Install dashboard-linter
run: |
go install github.com/grafana/dashboard-linter@latest
echo "$HOME/go/bin" >> "$GITHUB_PATH"
# rules ref: https://github.com/grafana/dashboard-linter/blob/main/docs/index.md#rules
- run: dashboard-linter rules
- name: Lint rendered dashboards
run: |
lint_failures=""
dashboard_folders=rendered-dashboards
for file in `find $dashboard_folders -name '*.jsonnet'`
do
lint_fail=""
echo "::group::$file"
dashboard-linter lint --strict $file || lint_fail=1
echo "::endgroup::"
if [ -n "$lint_fail" ]; then
lint_failures="$lint_failures $file";
fi
done
if [ -n "$lint_failures" ]; then
echo "dashboard-linter errored for the following rendered dashboards:"
for file in $lint_failures
do
echo basename $file
done
exit 1
fi