Skip to content
Open
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
16 changes: 11 additions & 5 deletions .github/workflows/audio-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,23 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
node-version: '22'
cache: 'pnpm'
cache-dependency-path: pnpm-lock.yaml

- name: Install Dependencies
run: npm ci
run: pnpm install --frozen-lockfile

- name: Run Audio Unit Tests
run: npx vitest run src/__tests__/audio-*
run: pnpm exec vitest run src/__tests__/audio-*

- name: TypeScript Compile Audit
run: npx tsc --noEmit
run: pnpm exec tsc --noEmit
3 changes: 1 addition & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ jobs:
cache: pnpm

- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm tsc --noEmit
- run: pnpm exec tsc --noEmit

# ─── Unit & Integration Tests ────────────────────
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/video-backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v3
uses: pnpm/action-setup@v4
with:
version: 9

Expand Down
3 changes: 3 additions & 0 deletions .jules/palette.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 2024-05-18 - Missing ARIA Labels on Icon-only Buttons
**Learning:** Found a pattern of missing `aria-label` attributes on icon-only buttons (like tool icons or action buttons). While these buttons occasionally had `title` attributes for tooltips, they lacked the `aria-label` necessary for robust screen reader accessibility.
**Action:** When working on custom interactive components, particularly icon-only actions (like chat submission, attachments, etc.), ensure to explicitly include `aria-label` along with standard `title` tooltips to properly expose functionality to assistive technologies.
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
"@google/genai": "^1.46.0",
"@imgly/background-removal": "^1.7.0",
"@pdf-lib/fontkit": "^1.1.1",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@prisma/extension-optimize": "^2.0.1",
"@prisma/instrumentation": "^7.5.0",
"@prisma/sqlcommenter-query-insights": "^7.6.0",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
Expand Down Expand Up @@ -60,6 +64,7 @@
"gsap": "^3.14.2",
"heic2any": "^0.0.4",
"idb": "^8.0.3",
"idb-keyval": "^6.2.2",
"immer": "^11.1.4",
"jimp": "^0.22.12",
"js-yaml": "^4.1.1",
Expand Down Expand Up @@ -129,6 +134,7 @@
"eslint-config-next": "^16.2.1",
"jsdom": "^29.0.0",
"postcss": "^8",
"prisma": "^7.6.0",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^4.1.0"
Expand Down
Loading
Loading