Skip to content

Bump deps

Bump deps #263

Workflow file for this run

name: Latest Grafana API compatibility check
on: [pull_request]
jobs:
compatibilitycheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build plugin
run: npm run build
- name: Compatibility check
uses: grafana/plugin-actions/is-compatible@8e19900577d14a8ac66c5e8299ce51522590c219
with:
module: 'src/module.ts'
comment-pr: 'yes'
fail-if-incompatible: 'no'
targets: '@grafana/data,@grafana/ui,@grafana/runtime,@grafana/e2e-selectors'