Skip to content

PMM-13282 Migrate pmm-dump to v3 (#3143) #238

PMM-13282 Migrate pmm-dump to v3 (#3143)

PMM-13282 Migrate pmm-dump to v3 (#3143) #238

Workflow file for this run

name: UI
on:
push:
branches:
- main
- v3
- pmm-*
tags:
- v[0-9]+.[0-9]+.[0-9]+*
pull_request:
paths-ignore:
- "admin/**"
- "agent/**"
- "api-tests/**"
- "cli-tests/**"
- "docs/**"
- "managed/**"
- "managed-dev/**"
- "qan-api2/**"
- "vmproxy/**"
- "update/**"
jobs:
ci:
name: CI
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ${{ github.workspace }}/ui
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version-file: ui/.nvmrc
cache: yarn
cache-dependency-path: ui
- name: Run lint
run: |
make lint
- name: Run unit tests
run: |
make test
- name: Build application
run: |
make build