File tree Expand file tree Collapse file tree 2 files changed +23
-56
lines changed
Expand file tree Collapse file tree 2 files changed +23
-56
lines changed Original file line number Diff line number Diff line change 55 runs-on : ubuntu-latest
66 strategy :
77 matrix :
8- python-version : [3.5, 3.6, 3.7, 3.8 ]
8+ python-version : [3.5, 3.6, 3.7]
99 steps :
1010 - name : Check out repository code
1111 uses : actions/checkout@v2
5252
5353 - name : Run coverage
5454 run : codecov
55+
56+ NodeJS-Tests :
57+ runs-on : ubuntu-latest
58+ strategy :
59+ matrix :
60+ node-version : [16]
61+ steps :
62+ - name : Check out repository code
63+ uses : actions/checkout@v2
64+
65+ - name : Set up Node.js ${{ matrix.node-version }}
66+ uses : actions/setup-node@v2
67+ with :
68+ node-version : ${{ matrix.node-version }}
69+
70+ - name : Install dependencies
71+ run : |
72+ cd mitxgraders-js
73+ npm install
74+
75+ - name : Run test cases
76+ run : npm test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments