File tree 3 files changed +33
-1
lines changed
3 files changed +33
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Test, lint and Code Coverage
2
+
3
+ on : [ push ]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - name : Checkout repository
12
+ uses : actions/checkout@v2
13
+
14
+ - name : Set up Node.js ${{ matrix.node-version }}
15
+ uses : actions/setup-node@v1
16
+ with :
17
+ node-version : 20.x
18
+
19
+ - name : Install dependencies
20
+ run : npm install
21
+
22
+ - name : Lint the code
23
+ run : npm run lint
24
+
25
+ - name : Run the tests
26
+ run : npm test -- --coverage
27
+
28
+ - name : Upload coverage to Codecov
29
+ uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change
1
+ {
2
+ "endOfLine" : " lf"
3
+ }
Original file line number Diff line number Diff line change 23
23
" random" ,
24
24
" dx"
25
25
],
26
- "author" : " Morgan Owen " ,
26
+ "author" : " Morgan Sands " ,
27
27
"license" : " MIT" ,
28
28
"bugs" : {
29
29
"url" : " https://github.com/mog13/DXJS/issues"
You can’t perform that action at this time.
0 commit comments