Skip to content

fix(plot): v1.5.1 legend, styles, and seek alignment #40

fix(plot): v1.5.1 legend, styles, and seek alignment

fix(plot): v1.5.1 legend, styles, and seek alignment #40

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- run: npm ci
- run: npx playwright install chromium --with-deps
- name: Generate E2E fixtures
run: npm run gen:e2e:fixtures
- run: npm run test:e2e
env:
CI: true