Skip to content

refactor(plugin-lava-player): add lyrics plugin #234

refactor(plugin-lava-player): add lyrics plugin

refactor(plugin-lava-player): add lyrics plugin #234

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
paths-ignore:
- "docs/docs/**"
branches:
- main
jobs:
build:
name: Build Monorepo
runs-on: ubuntu-latest
steps:
- name: check out code 🛎
uses: actions/checkout@main
- name: Install Node
uses: actions/setup-node@main
with:
cache: "npm"
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Tests
run: npm run test
- name: Run prettier
run: npm run prettier
- name: Run ESLint
run: npm run lint