Bumps [`@grafana/create-plugin`](https://github.com/grafana/plugin-tools/tree/main/packages/create-plugin) configuration from 4.2.1 to 5.26.4. **Notes for reviewer:** This is an auto-generated PR which ran `@grafana/create-plugin update`. Please consult the create-plugin [CHANGELOG.md](https://github.com/grafana/plugin-tools/blob/main/packages/create-plugin/CHANGELOG.md) to understand what may have changed. Please review the changes thoroughly before merging. --------- Co-authored-by: grafana-plugins-platform-bot[bot] <144369747+grafana-plugins-platform-bot[bot]@users.noreply.github.com> Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com>
29 lines
782 B
YAML
29 lines
782 B
YAML
name: Compatibility check
|
|
on: [push]
|
|
|
|
jobs:
|
|
compatibilitycheck:
|
|
permissions:
|
|
# Required permissions when comment-pr is set to 'yes': pull-requests: write, contents: read
|
|
pull-requests: write
|
|
contents: read
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'yarn'
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
- name: Build plugin
|
|
run: yarn build
|
|
- name: Compatibility check
|
|
uses: grafana/plugin-actions/is-compatible@main
|
|
with:
|
|
module: './src/module.ts'
|
|
comment-pr: 'yes'
|
|
fail-if-incompatible: 'no'
|