Replace deprecated percy/exec-action with direct test run#23
Merged
Conversation
percy/exec-action no longer exists (repo 404s), breaking this workflow. The test script already runs `percy exec` internally, so the action was double-wrapping Percy sessions. Run the test command directly instead. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
GitHub now auto-fails workflows using actions/cache v1/v2, and checkout@v2/v3 + setup-node@v1 are deprecated. Bump checkout, setup-node, cache (->v4) and setup-python (->v5) to keep CI green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Shivanshu-07
approved these changes
Jun 3, 2026
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
Replaces the
percy/exec-action@v0.3.1step in.github/workflows/test.ymlwith a plainrun:step that invokes the existing test command directly.Why
percy/exec-actionno longer exists — the repo 404s, so this workflow is currently broken.testscript already runspercy execinternally, so wrapping it inpercy/exec-action(which runspercy exec -- <cmd>) nested two Percy sessions.@percy/cliis already a devDependency, so the test command resolvespercy execon its own.Net effect: removes the dead action and the double-wrap; the test runs exactly as intended with
PERCY_TOKENstill passed through.🤖 Generated with Claude Code