Skip to content

PMM-13463 Grafana 11.6.0 #3986

PMM-13463 Grafana 11.6.0

PMM-13463 Grafana 11.6.0 #3986

Workflow file for this run

---
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Run Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run with Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Run tests
run: yarn run ci:test-percona-frontend