Skip to content

chore(CHANGELOG): update #4797

chore(CHANGELOG): update

chore(CHANGELOG): update #4797

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build_browsers:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
browser: [ Firefox, ChromeHeadless ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Setup project
uses: bpmn-io/actions/setup@latest
- name: Build (with coverage)
if: matrix.browser == 'ChromeHeadless'
env:
COVERAGE: 1
TEST_BROWSERS: ${{ matrix.browser }}
run: npm run all
- name: Build
if: matrix.browser == 'Firefox'
env:
TEST_BROWSERS: ${{ matrix.browser }}
run: xvfb-run npm run all
- name: Upload coverage
if: matrix.browser == 'ChromeHeadless'
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build_os:
strategy:
fail-fast: false
matrix:
os: [ macos-latest, windows-latest ]
browser: [ ChromeHeadless ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Setup project
uses: bpmn-io/actions/setup@latest
- name: Build
env:
TEST_BROWSERS: ${{ matrix.browser }}
run: npm run all