ci: add phase-1 GitHub Actions workflow (per-app matrix)#77
Open
jhamon wants to merge 1 commit into
Open
Conversation
The repo had no CI. Adds a workflow running on push/PR to main that, per sample app, installs deps and runs lint/build (Next.js apps) or byte-compiles the FastAPI backend (shop-the-look). Matrix covers the mixed package managers (npm + pnpm) and the client/server split in namespace-notes. Jobs are non-blocking (continue-on-error) in this first phase because some apps have known-broken installs (e.g. legal-semantic-search `file:` deps, namespace-notes stale `install:all` path) tracked in #73 and SDK drift in #74. Flipping the matrix to a required gate is tracked in #71 and depends on that cleanup. Token scoped contents: read (least privilege). Part of #71. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
Adds a CI workflow (
.github/workflows/ci.yml) — the repo previously had no CI.On push/PR to
main(and manual dispatch), a matrix runs per sample app:legal-semantic-search,pinecone-assistant[pnpm],shop-the-look) — install +lint+buildclientandserver(via their real paths)pip install -r requirements.txt+compileall apiHandles the mixed package managers (npm + pnpm) and the client/server split. Token scoped
contents: read.Why / phase 1
This is a phase-1, informational CI: every job is
continue-on-error, so it reports per-app status without blockingmain. That's deliberate — several apps currently can't install/build cleanly:legal-semantic-searchhas brokenfile:deps (→ Dependency & lockfile hygiene: clear medium/low Dependabot, regenerate lockfiles, fix broken/unpinned deps #73)namespace-notes's owninstall:allscript targets a staleserver/nodepath (→ Dependency & lockfile hygiene: clear medium/low Dependabot, regenerate lockfiles, fix broken/unpinned deps #73); the workflow sidesteps it by installing the real dirsFlipping this matrix to a required gate is tracked in #71 and depends on #73/#74 landing. This PR establishes the CI surface and makes the current per-app failures visible in Actions.
Verification
YAML validated locally. Once merged (or via the PR run), the Actions tab shows per-app pass/fail — the intended signal.
Part of #71 (parent sweep #76).
🤖 Generated with Claude Code