File tree Expand file tree Collapse file tree
apps/polycentric/src/features/composer/hooks Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828 - pnpm config set @polycentric:registry https://${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/
2929 - pnpm install
3030
31- app-format -check :
31+ app-biome -check :
3232 extends : .app-check-base
3333 stage : check
3434 script :
35- - pnpm format apps/polycentric
36- allow_failure : true
37-
38- app-lint-check :
39- extends : .app-check-base
40- stage : check
41- script :
42- - pnpm --filter polycentric-app lint
35+ - pnpm exec biome check apps/polycentric --diagnostic-level=error
4336 allow_failure : true
4437
4538app-tests :
Original file line number Diff line number Diff line change 2525 - pnpm config set @polycentric:registry https://${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/packages/npm/
2626 - pnpm install
2727
28- js-sdks-format -check :
28+ js-sdks-biome -check :
2929 extends : .js-sdks-base
3030 stage : check
3131 script :
32- - pnpm format
33- allow_failure : true
34-
35- js-sdks-lint-check :
36- extends : .js-sdks-base
37- stage : check
38- script :
39- - pnpm --filter js-core lint
32+ - pnpm exec biome check packages/js-core --diagnostic-level=error
4033 allow_failure : true
4134
4235js-core-tests-check :
Original file line number Diff line number Diff line change @@ -89,7 +89,9 @@ beforeEach(() => {
8989
9090afterEach ( ( ) => {
9191 act ( ( ) => {
92- renderers . forEach ( ( r ) => r . unmount ( ) ) ;
92+ renderers . forEach ( ( r ) => {
93+ r . unmount ( ) ;
94+ } ) ;
9395 } ) ;
9496 renderers = [ ] ;
9597} ) ;
Original file line number Diff line number Diff line change 66 "dev" : " turbo run dev" ,
77 "build" : " turbo run build" ,
88 "clean:cache" : " rm -rf .turbo node_modules/.cache/turbo" ,
9- "format" : " biome check " ,
10- "format:fix" : " biome check --write" ,
9+ "format" : " biome format " ,
10+ "format:fix" : " biome format --write" ,
1111 "generate" : " turbo run generate" ,
1212 "lint" : " turbo run lint" ,
1313 "lint:fix" : " turbo run lint:fix" ,
You can’t perform that action at this time.
0 commit comments