File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,25 +2,25 @@ name: CI
2
2
on : [ push, pull_request ]
3
3
jobs :
4
4
Build :
5
-
5
+ runs-on : ubuntu-latest
6
+ continue-on-error : ${{ matrix.integration }}
6
7
strategy :
7
8
matrix :
8
- os : [ ubuntu-latest ]
9
- node-version : [ 20 ]
9
+ integration : [ true ]
10
10
integration-deps :
11
11
12
12
- " @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
16
16
17
17
steps :
18
18
- name : Checkout
19
19
uses : actions/checkout@v4
20
20
- name : Use Node.js
21
21
uses : actions/setup-node@v3
22
22
with :
23
- node-version : ${{ matrix.node-version }}
23
+ node-version : 20
24
24
cache : ' npm'
25
25
- name : Install dependencies
26
26
run : npm ci
You can’t perform that action at this time.
0 commit comments