Skip to content

chore: update test dependencies (major) #148

chore: update test dependencies (major)

chore: update test dependencies (major) #148

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
integration-deps:
- ""
- "diagram-js@^14"
steps:
- name: Checkout
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: Install dependencies for integration test
if: ${{ matrix.integration-deps != '' }}
run: npm install ${{ matrix.integration-deps }}
- name: Build
if: ${{ matrix.integration-deps == '' }}
env:
TEST_BROWSERS: ChromeHeadless
run: npm run all