Skip to content

Fix "Dragging from input slot connected to SubgraphInputNode creates new link instead of moving existing one" #974

Fix "Dragging from input slot connected to SubgraphInputNode creates new link instead of moving existing one"

Fix "Dragging from input slot connected to SubgraphInputNode creates new link instead of moving existing one" #974

name: Unit Test, Lint, and Format
on:
push:
branches: [main, master, "dev*"]
pull_request:
branches: [main, master, "dev*"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Build
run: |
npm ci
npm run build
- name: Run lint
run: |
npm run lint:ci
- name: Run format
run: |
npm run format
- name: Run vitest tests
run: |
npm test -- --reporter=verbose