File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 15
15
16
16
- name : yarn install
17
17
run : yarn --immutable
18
- shell : bash
19
18
20
19
- name : Static code validation
21
20
run : yarn static-code-validation
22
- shell : bash
23
21
24
22
test :
25
23
runs-on : ubuntu-24.04
51
49
52
50
build :
53
51
runs-on : ubuntu-24.04
54
- needs : [lint , test]
52
+ needs : [static-code-validation , test]
55
53
steps :
56
54
- uses : actions/checkout@v4
57
55
- uses : actions/setup-node@v4
Original file line number Diff line number Diff line change 26
26
"prepare" : " husky" ,
27
27
"lint" : " yarn oxlint --deny-warnings src" ,
28
28
"type-check" : " tsc --noEmit --emitDeclarationOnly false" ,
29
- "static-code-validation" : " concurrently \" yarn lint\" \" yarn type-check\" " ,
29
+ "static-code-validation" : " concurrently \" yarn lint\" \" yarn type-check\" \" yarn prettier-check \" " ,
30
30
"test" : " jest" ,
31
31
"test-coverage" : " jest --coverage" ,
32
32
"build-declarations" : " tsc -p tsconfig.build.json --isolatedModules false --declaration true --declarationMap true --noEmit false --emitDeclarationOnly true" ,
You can’t perform that action at this time.
0 commit comments