[WIP] Fix failing GitHub Actions workflow CI / test (pull_request) #12647
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.
Fix Failing CI Test Workflow ✅
Summary
Fixed failing hash consistency tests by implementing version-aware hash computation in tests and recompiling all workflow lock files with the new hash algorithm.
Root Cause
PR #12589 introduced a deterministic SHA-256 hash that includes compiler version. Lock files contained old hashes, but new code computed different hashes because:
Solution
1. TestMain Setup (
pkg/parser/frontmatter_hash_test_main_test.go)TestMainto set compiler version fromgit describe --always --dirty-dirtysuffix to match clean commit versions used in lock files2. JS Stability Test Fix (
pkg/parser/frontmatter_hash_stability_test.go)3. Lock File Regeneration
Tests Status
TestHashConsistencyAcrossLockFiles- PASSINGTestGoJSHashStability- PASSINGAll hash-related tests now pass consistently.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.