Skip to content

build(deps): bump tar from 7.4.3 to 7.5.3 #27

build(deps): bump tar from 7.4.3 to 7.5.3

build(deps): bump tar from 7.4.3 to 7.5.3 #27

Workflow file for this run

name: Latest Grafana API compatibility check
on: [pull_request]
jobs:
compatibilitycheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Build plugin
run: yarn run build
- name: Find module.ts or module.tsx
id: find-module-ts
run: >-
MODULETS="$(find ./src -type f \( -name "module.ts" -o -name
"module.tsx" \))"
echo "modulets=${MODULETS}" >> $GITHUB_OUTPUT
- name: Compatibility check
uses: grafana/plugin-actions/is-compatible@main
with:
module: ${{ steps.find-module-ts.outputs.modulets }}
comment-pr: no
fail-if-incompatible: yes