Skip to content

Migrate from older Grafana toolkit to 'Create-plugin' #76

Migrate from older Grafana toolkit to 'Create-plugin'

Migrate from older Grafana toolkit to 'Create-plugin' #76

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
pull_request:
push:
branches:
- main
- migrate
jobs:
# build:
# runs-on: ubuntu-20.04
# strategy:
# matrix:
# node-version: [14.x]
# # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
# steps:
# - uses: actions/checkout@v2
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v2
# with:
# node-version: ${{ matrix.node-version }}
# - run: yarn install
# - run: yarn test
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Install dependencies
run: yarn install
- name: Test
run: yarn test
env:
CI: true
- name: Generate build
run: yarn build
# Share artifact inside workflow