Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
build:

strategy:
fail-fast: true
matrix:
Expand All @@ -18,7 +19,9 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:

node-version: 'lts/*'
cache: 'npm'

- run: npm install
- run: npm test
4 changes: 4 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ rules in mind as new files are created:
- **Non‑blocking audio** – heavy processing must stay off the UI thread.
- **Tests** – every new feature requires tests once the test suite is available.


## Shadcn and Electron

The interface is being rebuilt with [shadcn/ui](https://ui.shadcn.com) components.
Expand All @@ -51,6 +52,7 @@ Follow these guidelines when working on UI code:
- **Tailwind theming** – rely on CSS variables and utilities in `@/utils/tailwind` for styling.
- **Testing without running** – confirm `npm run typecheck` and module resolution with `node -e "require('<file>')"`.


## Tests

No automated tests yet. When a suite is added, run `npm test` before each
Expand Down Expand Up @@ -94,8 +96,10 @@ uses Electron. Key goals are:
3. Investigate speaker diarization options and integrate when feasible.
4. Plan a migration path toward a proper testing setup (Jest or similar).
5. Document security considerations for audio storage and processing.

6. Rebuild the entire UI using shadcn components.


These plans are aspirational; implement them gradually while keeping the app
functional.

Expand Down
Loading