Fix CI failures: stale lockfile, lever typo, Quasar CLI rename, add Quasar badge#4
Merged
mikemaccana merged 5 commits intomainfrom Apr 13, 2026
Merged
Fix CI failures: stale lockfile, lever typo, Quasar CLI rename, add Quasar badge#4mikemaccana merged 5 commits intomainfrom
mikemaccana merged 5 commits intomainfrom
Conversation
The '_mut' before 'context' is a typo from a find-and-replace that renamed 'ctx' to 'context'. Since context is not mutated in this function (body is just Ok(())), the parameter should simply be 'context' with no prefix. This fixes Rust Lint / Clippy CI failures.
The crate was renamed from 'cli' to 'quasar-cli' in the quasar repository. The old 'cargo install ... cli --locked' fails because the crate no longer exists under that name. This fixes the Quasar CI workflow.
Add the Quasar workflow badge alongside the existing Anchor, Pinocchio, and Native badges for visibility into CI status.
package.json specifies @anchor-lang/core 1.0.0 but the lockfile still referenced 1.0.0-rc.5, causing 'pnpm install --frozen-lockfile' to fail in CI (Anchor + TypeScript workflows). Regenerated with 'pnpm install --no-frozen-lockfile' to sync the lockfile.
Quasar is the closest to Anchor in ergonomics (Anchor-compatible no_std framework), so it makes sense to list it right after Anchor. Reordered in: subtitle, badges, description list, and all example links.
mikemaccana
approved these changes
Apr 13, 2026
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 all 4 CI failures on
main(Anchor, TypeScript, Rust Lint, Quasar workflows).Changes
Fix stale pnpm lockfile —
pnpm-lock.yamlreferenced@anchor-lang/core 1.0.0-rc.5butpackage.jsonspecifies1.0.0. Regenerated lockfile. Fixes Anchor + TypeScript (Biome) workflows.Fix lever syntax error —
basics/cross-program-invocation/anchor/programs/lever/src/lib.rshad_mut context(bad find-and-replace fromctx→contextrename). Changed tocontextsince the parameter isn't mutated. Fixes Rust Lint (Clippy) workflow.Fix Quasar CLI install — The
clicrate inblueshift-gg/quasarwas renamed toquasar-cli. Updated.github/workflows/solana-quasar.ymlto usecargo install --git ... quasar-cli. Fixes Quasar workflow.Add Quasar CI badge — Added Quasar workflow badge to README.md alongside Anchor, Pinocchio, and Native badges.