Commit 6ba31e3 1 parent 7b067de commit 6ba31e3 Copy full SHA for 6ba31e3
File tree 4 files changed +948
-11
lines changed
4 files changed +948
-11
lines changed Original file line number Diff line number Diff line change
1
+ name : fe
2
+ on :
3
+ push :
4
+ paths : ['fe/**']
5
+ defaults :
6
+ run :
7
+ working-directory : ./fe
8
+ jobs :
9
+ fe :
10
+ name : fe
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@main
14
+ - name : install
15
+ run : yarn install --immutable
16
+ - name : tsc
17
+ run : yarn run vue-tsc
18
+ if : ${{ !cancelled() }}
19
+ continue-on-error : true
20
+ - name : eslint
21
+ run : yarn run eslint src
22
+ if : ${{ !cancelled() }}
23
+ continue-on-error : true
24
+ - name : codechecks
25
+ run : yarn run codechecks
26
+ env :
27
+ CC_SECRET : ${{ secrets.CC_SECRET }}
28
+ if : ${{ !cancelled() }}
29
+ continue-on-error : true
Original file line number Diff line number Diff line change
1
+ checks :
2
+ - name : typecov
3
+ options :
4
+ strict : true
5
+ atLeast : 95
Original file line number Diff line number Diff line change 36
36
"vue-router" : " ^4.2.5"
37
37
},
38
38
"devDependencies" : {
39
+ "@codechecks/client" : " ^0.1.12" ,
39
40
"@stylistic/eslint-plugin" : " ^1.6.1" ,
40
41
"@stylistic/eslint-plugin-migrate" : " ^1.6.1" ,
41
42
"@tanstack/eslint-plugin-query" : " ^5.20.1" ,
64
65
"import-sync" : " ^2.2.0" ,
65
66
"rollup-plugin-visualizer" : " ^5.12.0" ,
66
67
"stats.js" : " ^0.17.0" ,
68
+ "typecov" : " ^0.2.3" ,
67
69
"typescript" : " ^5.3.3" ,
68
70
"typescript-eslint-parser-for-extra-files" : " ^0.6.0" ,
69
71
"vite" : " ^5.1.1" ,
You can’t perform that action at this time.
0 commit comments