Skip to content

chore: centralize style definitions #120

chore: centralize style definitions

chore: centralize style definitions #120

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
Build:
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 16 ]
integration-deps:
- "" # as defined in package.json
- bpmn-js@8.x diagram-js@7.x
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- 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
run: npm run all