Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Validate Locales
run: pnpm validate-locales

- name: Check Formatting
run: pnpm format:check

- name: Type check
run: pnpm exec tsc --noEmit

Expand Down
1 change: 1 addition & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pnpm exec commitlint --edit "$1"
3 changes: 3 additions & 0 deletions commitlint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default {

Check warning on line 1 in commitlint.config.mjs

View workflow job for this annotation

GitHub Actions / Validate (Node 24.x)

Assign object to a variable before exporting as module default

Check warning on line 1 in commitlint.config.mjs

View workflow job for this annotation

GitHub Actions / Validate (Node 24.x)

Assign object to a variable before exporting as module default
extends: ["@commitlint/config-conventional"],
};
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
"tailwind-merge": "^2.5.3"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.2",
"@types/pg": "^8.20.0",
Expand Down
Loading
Loading