Skip to content

Fix bug when exports the diagram to PNG. Let table original position when still overlaps after making all attemps. #602

Fix bug when exports the diagram to PNG. Let table original position when still overlaps after making all attemps.

Fix bug when exports the diagram to PNG. Let table original position when still overlaps after making all attemps. #602

Workflow file for this run

name: CI workflow
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check TypeScript Types
run: npm run tsc-check
- name: Run tests
run: npm test
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Check TypeScript Types
run: npm run tsc-check
- name: Run E2E tests
run: npm run ci:e2e