Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
224c671
fix: resolve all CI errors
Mar 27, 2026
39e9d6b
chore: merge upstream bakeronchain/learnvault main
Mar 27, 2026
ff9c42a
fix: resolve post-merge CI errors
Mar 27, 2026
6c8397b
Merge branch 'main' into main
hally-Ayo Mar 27, 2026
58b6c0a
fix: remove ValueType import from recharts and fix borrow-after-move
Mar 27, 2026
3b20176
fix: resolve all contract and frontend CI failures
Mar 27, 2026
ecab53d
feat: Write Vitest unit tests for useDonor, useGovernance, and useLea…
devJaja Mar 27, 2026
f044ce9
feat: implement verify_milestone, reject_milestone, and comprehensive…
gelluisaac Mar 27, 2026
859c744
Add Course Management to CourseMilestone Contract
ChukwuemekaP1 Mar 27, 2026
d9f29da
Make milestone escrow inactivity window configurable
Properprogress1 Mar 27, 2026
562fa40
feat: add POST /api/governance/vote endpoint for scholarship proposals
nice-bills Mar 27, 2026
1818ad1
Fix storage design: move progress and course data to persistent stora…
rohan911438 Mar 27, 2026
6c55331
chore: remove NetworkPill workaround
Mar 27, 2026
ba60df4
fix: repair contract test suite
Mar 27, 2026
a78b7ea
latest updates
Akatenvictor Mar 27, 2026
b0aaaa7
VoteCast contractevent name renamed to VoteCastEvent
Davda-James Mar 27, 2026
5837300
ci: add frontend quality checks on PR to main
obajecollinsmicheal-cmd Mar 27, 2026
d798f89
fix: openai updated docs
Franklivania Mar 27, 2026
a834c3f
milestone_escrow: publish EscrowCreated and EscrowReclaimed events; u…
Feyisara2108 Mar 27, 2026
f42c547
fix(update): update cargo.toml to have the repo template metadata, di…
Litezy Mar 28, 2026
f449288
docs(token-economics): explain LRN and GOV token mechanics
Litezy Mar 28, 2026
5d7b8dd
feat: add auto-refresh polling to proposal comments
onyillto Mar 28, 2026
c9198df
Update CommentSection.tsx
onyillto Mar 28, 2026
dc4a91c
feat: replace inline DDL with numbered SQL migrations
marvelousufelix Mar 28, 2026
357cfd5
fix: resolve Server CI and Build CI failures
Mar 28, 2026
7f01a43
update
Mar 28, 2026
0f7c919
changes
Mar 28, 2026
1d9d763
feat/production-deployment-workflow
hally-Ayo Apr 27, 2026
d293820
fix
hally-Ayo Apr 28, 2026
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
14 changes: 14 additions & 0 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ on:
- "package.json"
- "package-lock.json"
- "vite.config.ts"
<<<<<<< HEAD
=======
- "vitest.config.ts"
>>>>>>> main
- "tsconfig*.json"
- "eslint.config.js"

Expand All @@ -33,9 +36,19 @@ jobs:
- name: Type check
run: npm run typecheck

- name: Type check
run: npm run typecheck

- name: Lint
run: npm run lint

<<<<<<< HEAD
- name: i18n scan
run: npm run i18n:scan

- name: Test
run: npm run test:frontend
=======
- name: Test with coverage
run: npm run test:coverage

Expand All @@ -46,6 +59,7 @@ jobs:
files: ./coverage/lcov.info
flags: frontend
fail_ci_if_error: false
>>>>>>> main

- name: Build
run: npm run build
6 changes: 6 additions & 0 deletions .github/workflows/server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ jobs:
run: npm run migrate
working-directory: server

<<<<<<< HEAD
- name: Run tests
run: npm test
working-directory: server
=======
- name: Verify migrations (apply, idempotency, rollback)
run: npm run migrate:verify
working-directory: server
Expand All @@ -64,3 +69,4 @@ jobs:
files: ./server/coverage/lcov.info
flags: backend
fail_ci_if_error: false
>>>>>>> main
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ strip = true

[profile.release-with-logs]
debug-assertions = true
inherits = "release"
inherits = "release"
Loading
Loading