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
4 changes: 3 additions & 1 deletion .github/workflows/agent-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ jobs:
node-version: '22'

- name: Install dependencies
run: npm install
run: |
npm --prefix dashboard/app ci
npm --prefix showcase/app ci

- name: Typecheck
run: npm run typecheck
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
run: python -m pip install -e ".[test]"

- name: Install Node dependencies
run: npm install
run: |
npm --prefix dashboard/app ci
npm --prefix showcase/app ci

- name: Canonical Check
run: npm run check
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/validation_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ jobs:
id: install
run: |
python -m pip install -e ".[test]"
npm install
npm --prefix dashboard/app ci
npm --prefix showcase/app ci
- name: Run Canonical Check
id: canonical_check
run: npm run check
Expand Down
Loading