File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,14 @@ jobs:
2020 - name : Install dependencies
2121 run : composer install --prefer-dist --no-progress
2222
23- - name : Type coverage
24- run : composer test:type-co
25-
2623 - name : Unit tests with coverage
2724 run : composer test:unit:co
2825
26+ - name : Type coverage
27+ run : composer test:type-co
28+
2929 - name : PHPStan
3030 run : composer test:stan
31+
32+ - name : Test PHP formating
33+ run : composer test:format:php
Original file line number Diff line number Diff line change 3838 "test:unit:co" : " pest --parallel --coverage --min=100" ,
3939 "test:type-co" : " pest --parallel --type-coverage --min=100" ,
4040 "test:js" : " npm run test:js" ,
41- "format" : [
42- " pint" ,
43- " npm run format"
44- ],
45- "test:format" : [
46- " pint --test" ,
47- " npm run format:check"
48- ],
41+ "format:js" : " npm run format" ,
42+ "format:php" : " pint" ,
43+ "test:format:php" : " pint --test" ,
44+ "test:format:js" : " npm run format:check" ,
4945 "test:stan" : " phpstan" ,
5046 "test:refa" : " rector --dry-run" ,
5147 "refa" : " rector" ,
5248 "test" : [
5349 " @test:type-co" ,
54- " @test:format" ,
50+ " @test:format:php" ,
51+ " @test:format:js" ,
5552 " @test:stan" ,
5653 " @test:refa" ,
5754 " @test:unit:co" ,
You can’t perform that action at this time.
0 commit comments