File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 3333 node-version : 20
3434 cache : ' npm'
3535 - run : npm ci
36- - run : npm run test
36+ - run : npm run test:cov
3737
3838 build_app :
3939 name : build:app
Original file line number Diff line number Diff line change @@ -31,10 +31,13 @@ format: node_modules
3131tests : node_modules
3232 npm run test
3333
34+ coverage : node_modules
35+ npm run test:cov
36+
3437migrate : up
3538 npx prisma migrate dev --name init
3639
37- .PHONY : up down dev build lint format tests migrate
40+ .PHONY : up down dev build lint format tests coverage migrate
3841
3942# Aliases
4043run : up dev
Original file line number Diff line number Diff line change 88 "start" : " next start" ,
99 "lint" : " next lint" ,
1010 "format" : " prettier --write ." ,
11- "test" : " jest"
11+ "test" : " jest" ,
12+ "test:cov" : " jest --coverage"
1213 },
1314 "dependencies" : {
1415 "@prisma/client" : " ^6.12.0" ,
You can’t perform that action at this time.
0 commit comments