Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grab update from source #1

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b449007
Adjust template for 7.0
dprokop Apr 25, 2020
e4af78b
Add link to panel plugin tutorial
dprokop Apr 25, 2020
96cb802
Update logo
dprokop Apr 27, 2020
b2724ba
Set is-promise version
marcusolsson Apr 28, 2020
a7cf252
Merge pull request #16 from grafana/update-is-promise
Apr 28, 2020
73d5666
Update grafana packages to beta
dprokop Apr 29, 2020
02be233
update yarn.lock
ryantxu May 2, 2020
fafb69a
update ci
ryantxu May 14, 2020
6fdfb81
Update dependencies to 7.0
dprokop May 19, 2020
daf1d33
Update dependencies to 7.0.1
dprokop May 26, 2020
1b994e9
Bump elliptic from 6.5.2 to 6.5.3
dependabot[bot] Jul 31, 2020
2539d3b
$schema property added in plugin.json
yesoreyeram Aug 17, 2020
60d152f
Update plugin.json (#21)
vankop Aug 21, 2020
b5891c9
Update Grafana dependencies
marcusolsson Oct 6, 2020
c03417a
Update yarn.lock
marcusolsson Oct 6, 2020
68a4c45
Bump ini from 1.3.5 to 1.3.7
dependabot[bot] Dec 11, 2020
2f1f277
Merge pull request #20 from grafana/dependabot/npm_and_yarn/elliptic-…
marcusolsson Feb 3, 2021
2a06e97
Merge pull request #24 from grafana/dependabot/npm_and_yarn/ini-1.3.7
marcusolsson Feb 3, 2021
f237232
Merge pull request #22 from yesoreyeram/patch-1
marcusolsson Feb 3, 2021
7f83897
Consolidate starter plugins
marcusolsson Feb 3, 2021
6d6c66f
Add start script
marcusolsson Mar 1, 2021
b35d326
Bump ws from 6.2.1 to 6.2.2
dependabot[bot] Jun 5, 2021
e118636
Merge pull request #32 from grafana/dependabot/npm_and_yarn/ws-6.2.2
marcusolsson Jun 5, 2021
144e86e
docs: add deprecation notice to the README
leventebalogh Mar 4, 2022
122a378
chore: add react and react-dom as deps for 9.2.0
jackw Oct 12, 2022
3ae3531
chore: move dependencies and devDeps around
jackw Oct 12, 2022
5b32bee
Update README.md
leventebalogh Oct 19, 2022
efded48
Merge pull request #39 from grafana/leventebalogh/add-deprecation-notice
leventebalogh Oct 19, 2022
819eeb6
Merge pull request #41 from grafana/jackw/add-react-peer-deps
jackw Oct 20, 2022
d4bbe19
Fix emotion css import in SimplePanel.tsx
xnyo Oct 24, 2022
1198e76
Update yarn.lock
xnyo Oct 25, 2022
fcb1ece
Merge pull request #44 from grafana/giuseppe/fix-emotion-ui-import
xnyo Oct 25, 2022
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
254 changes: 0 additions & 254 deletions .circleci/config.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .codeclimate.yml

This file was deleted.

75 changes: 75 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: "14.x"

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Cache yarn cache
uses: actions/cache@v2
id: cache-yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-

- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-nodemodules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-nodemodules-

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Build and test frontend
run: yarn build

- name: Check for backend
id: check-for-backend
run: |
if [ -f "Magefile.go" ]
then
echo "::set-output name=has-backend::true"
fi

- name: Setup Go environment
if: steps.check-for-backend.outputs.has-backend == 'true'
uses: actions/setup-go@v2
with:
go-version: "1.15"

- name: Test backend
if: steps.check-for-backend.outputs.has-backend == 'true'
uses: magefile/mage-action@v1
with:
version: latest
args: coverage

- name: Build backend
if: steps.check-for-backend.outputs.has-backend == 'true'
uses: magefile/mage-action@v1
with:
version: latest
args: buildAll
Loading