File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on : [ push, pull_request ]
3
+ jobs :
4
+ Build :
5
+
6
+ strategy :
7
+ matrix :
8
+ os : [ ubuntu-latest ]
9
+ node-version : [ 14 ]
10
+
11
+ runs-on : ${{ matrix.os }}
12
+
13
+ steps :
14
+ - name : Checkout
15
+ uses : actions/checkout@v2
16
+ - name : Use Node.js
17
+ uses : actions/setup-node@v2
18
+ with :
19
+ node-version : ${{ matrix.node-version }}
20
+ - name : Cache Node.js modules
21
+ uses : actions/cache@v2
22
+ with :
23
+ # npm cache files are stored in `~/.npm` on Linux/macOS
24
+ path : ~/.npm
25
+ key : ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
26
+ restore-keys : |
27
+ ${{ runner.OS }}-node-
28
+ ${{ runner.OS }}-
29
+ - name : Install dependencies
30
+ run : npm install
31
+ - name : Build
32
+ run : npm run all
Original file line number Diff line number Diff line change 3
3
4
4
# Custom Elements in bpmn-js
5
5
6
+ [ ![ CI] ( https://github.com/bpmn-io/bpmn-js-example-custom-elements/workflows/CI/badge.svg )] ( https://github.com/bpmn-io/bpmn-js-example-custom-elements/actions?query=workflow%3ACI )
7
+
6
8
An example of how to support custom elements in [ bpmn-js] ( https://github.com/bpmn-io/bpmn-js ) while ensuring BPMN 2.0 compatibility.
7
9
8
10
![ Screenshot] ( docs/screenshot.png )
You can’t perform that action at this time.
0 commit comments