Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/add test coverage restrictions #76

Merged
merged 9 commits into from
Aug 16, 2024
2 changes: 0 additions & 2 deletions .github/workflows/backend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ name: Backend CI
# when should it run
on:
pull_request:
paths:
- backend
branches:
- main

Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/frontend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ name: Frontend CI
# when should it run
on:
pull_request:
paths:
- frontend
branches:
- main

Expand Down
14 changes: 12 additions & 2 deletions frontend/biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,23 @@
"rules": {
"all": true
},
"ignore": ["**/node_modules/**", "**/dist/**", "**/coverage/**"]
"ignore": [
"**/node_modules/**",
"**/dist/**",
"**/coverage/**",
"tsconfig.*.json"
]
},
"formatter": {
"indentWidth": 2,
"indentStyle": "space",
"enabled": true,
"ignore": ["**/node_modules/**", "**/dist/**", "**/coverage/**"]
"ignore": [
"**/node_modules/**",
"**/dist/**",
"**/coverage/**",
"tsconfig.*.json"
]
},
"overrides": [
{
Expand Down
Loading
Loading