Skip to content

Fix edge case in chordLyric renderer when the lyric line finishes in the middle of a chord symbol #488

Fix edge case in chordLyric renderer when the lyric line finishes in the middle of a chord symbol

Fix edge case in chordLyric renderer when the lyric line finishes in the middle of a chord symbol #488

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build & test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Install Node
- uses: actions/setup-node@v3
with:
node-version: 20
# Install & build & test:
- run: corepack enable
- run: yarn install
- run: yarn npm audit --environment production
- run: yarn run build
# Coverage report
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}