Skip to content

Commit c9e7fc0

Browse files
committed
ci: continue if peer deps job fails
1 parent 2aef21e commit c9e7fc0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ name: CI
22
on: [ push, pull_request ]
33
jobs:
44
Build:
5-
5+
runs-on: ubuntu-latest
6+
continue-on-error: ${{ matrix.integration }}
67
strategy:
78
matrix:
8-
os: [ ubuntu-latest ]
9-
node-version: [ 20 ]
9+
integration: [ true ]
1010
integration-deps:
1111
1212
- "@bpmn-io/properties-panel@3"
13-
- "" # as defined in package.json
14-
15-
runs-on: ${{ matrix.os }}
13+
include:
14+
- integration-deps: "" # as defined in package.json
15+
integration: false
1616

1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
2020
- name: Use Node.js
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: ${{ matrix.node-version }}
23+
node-version: 20
2424
cache: 'npm'
2525
- name: Install dependencies
2626
run: npm ci

0 commit comments

Comments
 (0)