Skip to content

fix(Input/Output): keep undo/redo stack #2597

fix(Input/Output): keep undo/redo stack

fix(Input/Output): keep undo/redo stack #2597

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
Build:
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 20 ]
integration-deps:
- diagram-js@11.9 bpmn-js@11.5
- "@bpmn-io/properties-panel@3"
- "" # as defined in package.json
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install dependencies for integration test
if: ${{ matrix.integration-deps != '' }}
run: npm install ${{ matrix.integration-deps }}
- name: Build
if: ${{ matrix.integration-deps != '' }}
run: npm run all
- name: Build with coverage
if: ${{ matrix.integration-deps == '' }}
env:
COVERAGE: 1
run: npm run all
- name: Upload coverage
if: ${{ matrix.integration-deps == '' }}
uses: codecov/codecov-action@v3