Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
run: npm ci

- name: Run TypeScript type check
run: npx tsc --noEmit
run: npm run type-check

tests-validate:
name: Tests (Validate)
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -65,8 +65,8 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Run validation tests
run: npm run test:validate
- name: Run tests
run: npm run test:ci

spell-check:
name: Spell Check
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
ci-success:
name: CI Success
runs-on: ubuntu-latest
needs: [lint, type-check, tests-validate, spell-check, build]
needs: [lint, type-check, test, spell-check, build]
if: always()
steps:
- name: Check all jobs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
# TODO: Configure GITHUB_TOKEN with appropriate permissions
# The fetch-github-stars script may need authentication
- name: Fetch GitHub stars
run: node scripts/fetch-github-stars.mjs
run: npm run fetch:github-stars
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
Expand Down
4 changes: 3 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co

## Internationalization (i18n)

**Translation Resources Location:** All translation files are located in the `translations/` directory at the project root, organized by locale code (e.g., `translations/en/`, `translations/zh-Hans/`).

When creating or modifying any page, module, or data:
- **MUST support all configured languages (18 total):**
- **MUST support all configured languages (12 total):**
- English (en)
- German (de)
- Spanish (es)
Expand Down
12 changes: 12 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@
"useGitignore": true,
"ignorePaths": ["cloudflare-env.d.ts", "docs", ".claude"],
"words": [
"Autorisierungsaufträgen",
"Entwicklungsframework",
"İçgörüleri",
"Versionierungsschema",
"interoperáveis",
"mengkomunikasikan",
"önekiyle",
"sağlayıcılı",
"ccstatusline",
"API'lerle",
"aracidir",
"Anthropics",
Expand Down Expand Up @@ -120,6 +129,7 @@
"Tasarlanmistir",
"tasarlandi",
"Türkçe",
"TSESTree",
"Vervollständigungstool",
"agentco",
"agentico",
Expand Down Expand Up @@ -193,6 +203,8 @@
"kwaikatonai",
"kwaikatonai",
"Kwaikatonai",
"kwaikat",
"KwaiKAT",
"laboratuvari",
"linkedin",
"mengdebug",
Expand Down
Loading
Loading