File tree Expand file tree Collapse file tree 2 files changed +54
-2
lines changed Expand file tree Collapse file tree 2 files changed +54
-2
lines changed Original file line number Diff line number Diff line change 41
41
with :
42
42
python-version : ${{ matrix.python-version }}
43
43
44
- - name : dependencies
44
+ - name : build
45
45
run : pip install .
46
46
47
- - name : pytest
47
+ - name : run
48
48
run : python examples/main.py
49
+
50
+ javascript :
51
+ runs-on : ubuntu-latest
52
+
53
+ strategy :
54
+ fail-fast : false
55
+ matrix :
56
+ node-version : ['20', '22', '24']
57
+
58
+ steps :
59
+ - uses : actions/checkout@v4
60
+
61
+ - uses : actions/setup-node@v4
62
+ with :
63
+ node-version : ${{ matrix.node-version }}
64
+
65
+ - uses : mymindstorm/setup-emsdk@v14
66
+
67
+ - name : build
68
+ run : npm run emcc
69
+
70
+ - name : run
71
+ run : node examples/main.mjs
Original file line number Diff line number Diff line change
1
+ name : jest
2
+
3
+ on :
4
+ - pull_request
5
+ - push
6
+
7
+ jobs :
8
+ pytest :
9
+ runs-on : ubuntu-latest
10
+
11
+ strategy :
12
+ fail-fast : false
13
+ matrix :
14
+ node-version : ['20', '22', '24']
15
+
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+
19
+ - uses : actions/setup-node@v4
20
+ with :
21
+ node-version : ${{ matrix.node-version }}
22
+
23
+ - uses : mymindstorm/setup-emsdk@v14
24
+
25
+ - name : dependencies
26
+ run : npm install --include=dev
27
+
28
+ - name : jest
29
+ run : npm run all
You can’t perform that action at this time.
0 commit comments