fix(ci): ensure QMD database directory exists on first run#28
Merged
Conversation
When smriti status (or any command using the database) runs for the first time in a fresh environment (like CI), the parent directory ~/.cache/qmd/ did not exist, causing SQLite to fail with "unable to open database file". Fixed by creating parent directory with mkdirSync(recursive: true) before opening the database connection. Also adds Bun binary caching to install-test.yml workflow for faster CI runs (Bun is read-only, safe to cache unlike the SQLite database). Fixes #28 (install test failures on all platforms) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
ashu17706
added a commit
that referenced
this pull request
Mar 14, 2026
When smriti status (or any command using the database) runs for the first time in a fresh environment (like CI), the parent directory ~/.cache/qmd/ did not exist, causing SQLite to fail with "unable to open database file". Fixed by creating parent directory with mkdirSync(recursive: true) before opening the database connection. Also adds Bun binary caching to install-test.yml workflow for faster CI runs (Bun is read-only, safe to cache unlike the SQLite database). Fixes #28 (install test failures on all platforms) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
ashu17706
added a commit
that referenced
this pull request
Mar 14, 2026
fix(ci): ensure QMD database directory exists on first run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the "unable to open database file" error that was causing CI test failures on all platforms (Ubuntu, macOS, Windows).
Root Cause
When
smriti statusruns for the first time in a fresh CI environment, it tries to open the QMD SQLite database at~/.cache/qmd/index.sqlite. The parent directory~/.cache/qmd/didn't exist, causing the database open to fail.Changes
mkdirSync(recursive: true)Testing
Fixes install test failures across all runners.
🤖 Generated with Claude Code