File tree 1 file changed +14
-14
lines changed
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change 11
11
- cron : " 0 0 * * *"
12
12
13
13
jobs :
14
- test-python :
14
+ test-javascript :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - uses : actions/setup-node@v2
19
+ with :
20
+ node-version : " 14"
21
+ - name : Test Javascript
22
+ working-directory : ./src/idom/client/app
23
+ run : |
24
+ npm --version
25
+ npm install
26
+ npm test
27
+ test-python-coverage :
15
28
runs-on : ubuntu-latest
16
29
steps :
17
30
- uses : actions/checkout@v2
28
41
- name : Run Tests
29
42
run : |
30
43
nox -s test -- pytest[--headless]
31
- test-javascript :
32
- runs-on : ubuntu-latest
33
- steps :
34
- - uses : actions/checkout@v2
35
- - uses : actions/setup-node@v2
36
- with :
37
- node-version : " 14"
38
- - name : Test Javascript
39
- working-directory : ./src/idom/client/app
40
- run : |
41
- npm --version
42
- npm install
43
- npm test
44
44
test-python-versions :
45
45
runs-on : ${{ matrix.os }}
46
46
strategy :
You can’t perform that action at this time.
0 commit comments