Skip to content
This repository was archived by the owner on Mar 11, 2024. It is now read-only.

Commit 45e976b

Browse files
authored
Add Compatibility Check Workflow (#17)
1 parent fa830d8 commit 45e976b

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ on:
77
pull_request:
88
branches:
99
- main
10+
1011
jobs:
1112
build:
1213
runs-on: ubuntu-latest
1314
steps:
14-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1516

1617
- name: Setup Node.js environment
17-
uses: actions/setup-node@v2.1.2
18+
uses: actions/setup-node@v3
1819
with:
1920
node-version: "16.x"
2021

@@ -65,6 +66,13 @@ jobs:
6566
popd
6667
plugincheck2 -config ./plugin-validator/config/default.yaml dist.zip
6768
69+
- name: Compatibility check
70+
uses: grafana/plugin-actions/is-compatible@v1
71+
with:
72+
module: "./src/module.ts"
73+
comment-pr: 'yes'
74+
fail-if-incompatible: 'no'
75+
6876
- name: Upload coverage to Codecov
6977
uses: codecov/codecov-action@v2
7078
with:

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Change Log
22

3-
## 2.1.0 (IN PROGRESS)
3+
## 2.1.0 (2022-09-22)
44

55
### Features / Enhancements
66

77
- Rebuild using 9.1.6 (#16)
8+
- Add Compatibility Check Workflow (#17)
89

910
## 2.0.0 (2022-06-16)
1011

0 commit comments

Comments
 (0)