Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellmueller committed Dec 2, 2024
1 parent 21ec8ed commit 9e82d93
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}

# commitlint: # Test all commits in PR follow conventional commit format
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: wagoid/commitlint-github-action@v6
# with:
# configFile: '.commitlintrc.yml'
commitlint: # Test all commits in PR follow conventional commit format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wagoid/commitlint-github-action@v6
with:
configFile: '.commitlintrc.yml'

results:
name: Analysis Results
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ repos:
- id: check-added-large-files

- repo: https://github.com/pre-commit/mirrors-eslint
rev: "v9.15.0" # Use the sha / tag you want to point at
rev: "v9.15.0"
hooks:
- id: eslint
files: \.[jt]sx?$ # *.js, *.jsx, *.ts and *.tsx
files: \.[jt]sx?$
types: [file]

- repo: https://github.com/rbubley/mirrors-prettier
Expand Down
2 changes: 2 additions & 0 deletions backend/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import helmet from "helmet";
import { VersioningType } from "@nestjs/common";
import { metricsMiddleware } from "./prom";

const unused = "asdasd";

/**
*
*/
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import { BrowserRouter } from 'react-router-dom';

const root = createRoot(document.getElementById('root') as HTMLElement);

const unused = 'unused variable';

root.render(
<StrictMode>
<Header />
Expand Down

0 comments on commit 9e82d93

Please sign in to comment.