test: add CI coverage for grouped skip-component precedence (Issue #32)#34
Merged
Merged
Conversation
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.
Motivation
skip-componentsnormalization (whitespace and case) andmaxvscustomprecedence are exercised by CI so the action's destructive behavior remains predictable.Description
/.github/workflows/test.yml:max-skip-cached-node-precedence,max-skip-firefox-precedence, andcustom-grouped-subgroup-precedence, each capturing pre-action state, exercising the action with normalized/mixed-caseskip-componentsor grouped toggles, and verifying expected post-action state.skip-components: cached-nodeis used, preserving Firefox whenskip-components: firefoxis used, and asserting grouped precedence scheduling via/tmp/total_opswhen bothremove-browsersandremove-firefoxare requested incustommode.README.mdwith aCI-verified interaction guaranteessection documenting the behaviors protected by the new tests.docs/CONTRIBUTING.mdand repository notes inAGENTS.mdto require/reflect interaction coverage for grouped/subgroup precedence andskip-componentsnormalization.Testing
action.ymland/.github/workflows/test.ymlwithruby -e 'require "yaml"; ...'which succeeded, confirming workflow and action syntax is valid.git diff --checkwhich reported no whitespace or diff errors.pre-commit run --all-filesbut it was not executed in this environment becausepre-commitis not installed (manual or CI pre-commit checks still required before merging).Codex Task