Skip to content

fixed a Bug, where the Plot start to jitter when moving the splitter #14

fixed a Bug, where the Plot start to jitter when moving the splitter

fixed a Bug, where the Plot start to jitter when moving the splitter #14

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js and NPM
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install
- name: Eslint
run: npm run lint
- name: Package
run: npm run package
- name: Test
run: npm test