Skip to content

Build by Github Actions #23

Build by Github Actions

Build by Github Actions #23

Workflow file for this run

name: Build & Publish
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install Dependencies
run: |
yarn install --frozen-lockfile;
- name: Test
run: |
echo "Grafana Boom Table plugin - Test";
yarn test;
- name: Build
run: |
echo "Grafana Boom Table plugin - Build";
yarn build;
- name: Deploy
run: |
echo "Grafana Boom Table plugin - Deploy";
echo $(date) > dist/LAST_UPDATED;
git config --global user.email "[email protected]";
git config --global user.name "Github Actions";
git add --force dist/
git commit -m "Build by Github Actions"
git push
git status