Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG grafana_version=latest
ARG grafana_image=grafana-enterprise
ARG grafana_image=grafana-oss

FROM grafana/${grafana_image}:${grafana_version}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
run: npm run build

- name: Start grafana docker
run: docker-compose up -d
run: docker compose up -d

- name: Run e2e tests
run: npm run e2e

- name: Stop grafana docker
run: docker-compose down
run: docker compose down

- name: Check for backend
id: check-for-backend
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/is-compatible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,21 @@ jobs:
compatibilitycheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Node.js environment
uses: actions/setup-node@v3
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: '16'
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build plugin
run: npm run build
- name: Compatibility check
run: npx @grafana/levitate@latest is-compatible --path src/module.ts --target @grafana/data@10.0.3,@grafana/ui@10.0.3,@grafana/runtime@10.0.3
uses: grafana/plugin-actions/is-compatible@bf335ac99375f0ba8828497abdf1a22897b5d888
with:
comment-pr: 'yes'
fail-if-incompatible: 'no'
targets: '@grafana/data,@grafana/ui,@grafana/runtime,@grafana/e2e-selectors'
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
build:
context: ./.config
args:
grafana_version: 10.4.0
grafana_version: 11.6.3
ports:
- 3000:3000/tcp
volumes:
Expand Down
Loading