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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
- name: Run ESLint
run: npm run lint

# Enforces the Swiss umlaut convention (display text keeps ä/ö/ü; only
# code identifiers/slugs may use ASCII). Was manual-only before — now gated.
- name: Check umlauts
run: npm run lint:umlauts

- name: Type check
run: npx tsc --noEmit

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy-selfhost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ jobs:
if: steps.secrets.outputs.configured == 'true'
run: npm run lint

- name: Check umlauts
if: steps.secrets.outputs.configured == 'true'
run: npm run lint:umlauts

- name: Type check
if: steps.secrets.outputs.configured == 'true'
run: npm run typecheck
Expand Down
Loading