This repository was archived by the owner on Jan 1, 2026. It is now read-only.
chore(deps): update grafana packages to ^12.3.1 #1993
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Latest Grafana API compatibility check | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - 0.*.x | |
| workflow_dispatch: | |
| jobs: | |
| compatibilitycheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: yarn install --immutable | |
| - name: Build plugin | |
| run: yarn run build | |
| - name: Compatibility check | |
| run: npx @grafana/levitate@latest is-compatible --path src/module.ts --target @grafana/data,@grafana/ui,@grafana/runtime |