Bump google.golang.org/grpc from 1.67.1 to 1.68.0 in /packages/grafana-llm-app #947
This file contains 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] | |
jobs: | |
compatibilitycheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build plugin frontend | |
run: npm run build | |
- name: Compatibility check plugin | |
run: npx @grafana/levitate@latest is-compatible --path packages/grafana-llm-app/src/module.ts --target @grafana/data,@grafana/ui,@grafana/runtime | |
- name: Compatibility check frontend library | |
run: npx @grafana/levitate@latest is-compatible --path packages/grafana-llm-frontend/src/index.ts --target @grafana/data,@grafana/ui,@grafana/runtime |