File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -117,3 +117,10 @@ jobs:
117
117
DENOPS_TEST_NVIM_EXECUTABLE : ${{ steps.nvim.outputs.executable_path }}
118
118
working-directory : ./repo
119
119
timeout-minutes : 3
120
+ - run : |
121
+ deno coverage --unstable .coverage --lcov > coverage.lcov
122
+ working-directory: ./repo
123
+ - uses : codecov/codecov-action@v3
124
+ with :
125
+ os : ${{ runner.os }}
126
+ files : ./repo/coverage.lcov
Original file line number Diff line number Diff line change 1
1
/.tools
2
+ /.coverage
2
3
deno.lock
4
+
Original file line number Diff line number Diff line change 1
1
{
2
2
"lock" : false ,
3
3
"tasks" : {
4
- "test" : " deno test --unstable -A --doc --parallel --shuffle" ,
4
+ "test" : " deno test --unstable -A --doc --parallel --shuffle --coverage=.coverage " ,
5
5
"check" : " deno check --unstable $(find . -name '*.ts')" ,
6
+ "coverage" : " deno coverage --unstable .coverage" ,
6
7
"upgrade" : " deno run -A https://deno.land/x/udd/main.ts $(find . -name '*.ts')" ,
7
8
"gen:function" : " deno run --unstable -A ./scripts/gen-function/gen-function.ts" ,
8
9
"gen:option" : " deno run --unstable -A ./scripts/gen-option/gen-option.ts" ,
You can’t perform that action at this time.
0 commit comments