File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ jobs:
24
24
version : latest
25
25
- name : Run Biome
26
26
run : biome ci .
27
- - run : pnpm test:coverage
28
- - run : pnpm test:report
27
+ - name : Run tests
28
+ run : pnpm cov
29
29
- name : Coveralls
30
30
uses : coverallsapp/github-action@master
31
31
with :
32
32
github-token : ${{ secrets.GITHUB_TOKEN }}
33
- path-to-lcov : ./coverage. lcov
33
+ path-to-lcov : ./coverage/ lcov.info
Original file line number Diff line number Diff line change 20
20
"scripts" : {
21
21
"build" : " tsc -p tsconfig.build.json" ,
22
22
"test" : " tsx --test src/*.test.ts" ,
23
- "test:coverage" : " c8 --include=src pnpm test" ,
24
- "test:report" : " c8 report --reporter=text-lcov > coverage.lcov" ,
23
+ "cov" : " c8 -r lcov pnpm test" ,
25
24
"lint" : " biome lint ." ,
26
25
"format" : " biome format ." ,
27
26
"check" : " biome check ."
You can’t perform that action at this time.
0 commit comments