-
Notifications
You must be signed in to change notification settings - Fork 0
feat(wbs): add search context and first-visit onboarding #632
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
seonghobae
wants to merge
48
commits into
develop
Choose a base branch
from
feat/static-onboarding
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
30af255
feat(wbs): add searchable hierarchy context
seonghobae 4a008b2
fix(wbs): disable collapse during search
seonghobae 0ab7b84
feat(wbs): add portable JSON download
seonghobae 763a491
fix(wbs): model forced search ancestors
seonghobae 93b1ad5
Merge branch 'feat/wbs-search-context' into feat/json-export
seonghobae 105ec1c
docs: refresh verification count
seonghobae ff442e0
test(wbs): prove search stays ephemeral
seonghobae d24689e
test(wbs): expose filtered interaction hazards
seonghobae af70cd8
fix(wbs): guard filtered edit and reorder interactions
seonghobae 6ca301a
fix(wbs): preserve planning fields in JSON export
seonghobae 7603c8c
fix(wbs): load search interaction guardrails
seonghobae 054fb4d
Merge remote-tracking branch 'origin/feat/wbs-search-context' into fe…
seonghobae 1335531
test(wbs): seed persistence state before search check
seonghobae ad816e1
Merge remote-tracking branch 'origin/feat/wbs-search-context' into fe…
seonghobae 7628747
docs: refresh WBS verification evidence
seonghobae aa5abaf
test(wbs): reproduce hidden create editor under search
seonghobae 7939e00
fix(wbs): block hidden create anchors during search
seonghobae fef17cb
fix(wbs): guard filtered hierarchy interactions
seonghobae 6053b90
Merge remote-tracking branch 'origin/feat/wbs-search-context' into fe…
seonghobae 89bafc0
Merge remote-tracking branch 'origin/feat/wbs-search-context' into fe…
seonghobae abbdff9
test(wbs): align guarded actions with explanatory controls
seonghobae 50dede2
test(wbs): use DOM dispatch for guarded controls
seonghobae 52da070
Merge remote-tracking branch 'origin/feat/wbs-search-context' into fe…
seonghobae 0d7901e
fix(wbs): block deletes while filtered
seonghobae 24726fb
fix(wbs): block deletes while filtered
seonghobae c6301a1
Merge remote-tracking branch 'origin/feat/wbs-search-context' into fe…
seonghobae 4f13308
feat(wbs): add first-visit sample onboarding
seonghobae 41979ec
fix(wbs): hide onboarding while searching
seonghobae 53c7d32
docs: clarify sample sync onboarding
seonghobae e47d6de
test(a11y): retain visual accessibility evidence
seonghobae 50c6d07
fix(wbs): clear stale search and seed state
seonghobae 88f31d4
test(cloud): cover active plan replacement
seonghobae d1ed68a
docs(quality): record coverage readiness gap
seonghobae b130c4f
test(coverage): merge browser and node reports
seonghobae 5ae5fef
test(coverage): include all server modules
seonghobae 158300b
docs(quality): record merged coverage evidence
seonghobae c4660e9
test(coverage): support portable report paths
seonghobae 87ed563
fix(onboarding): preserve notice after failed save
seonghobae 2cdd197
docs(quality): refresh coverage snapshot
seonghobae 2c0466c
test(cloud): cover sprint and baseline metrics
seonghobae 33ea978
test(cloud): cover management workflows
seonghobae 059226d
docs(quality): refresh cloud coverage evidence
seonghobae b8c188b
fix(planner): preserve cloud task data
seonghobae 2e57f02
docs(quality): refresh coverage snapshot
seonghobae 7112323
test(coverage): include complete regression suites
seonghobae 8cb3eb4
docs(quality): record complete-suite coverage
seonghobae bce21b4
test(coverage): exercise planner edge paths
seonghobae e234794
docs(quality): record edge-path coverage
seonghobae File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| name: Visual Accessibility Evidence | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: [develop] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| concurrency: | ||
| group: visual-accessibility-evidence-${{ github.event.pull_request.number || github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| browser-evidence: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout exact revision | ||
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | ||
| with: | ||
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
| persist-credentials: false | ||
|
|
||
| - name: Verify exact checkout | ||
| env: | ||
| EXPECTED_CHECKOUT_SHA: ${{ github.event.pull_request.head.sha || github.sha }} | ||
| run: | | ||
| set -euo pipefail | ||
| actual_sha="$(git rev-parse HEAD)" | ||
| test "$actual_sha" = "$EXPECTED_CHECKOUT_SHA" | ||
|
|
||
| - name: Setup Node 22.13 | ||
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | ||
| with: | ||
| node-version: 22.13.0 | ||
|
|
||
| - name: Install | ||
| run: npm ci | ||
|
|
||
| - name: Install Playwright (chromium) | ||
| run: npx playwright install chromium --with-deps | ||
|
|
||
| - name: Capture visual and accessibility evidence | ||
| run: npm run test:e2e -- tests/e2e/visual-accessibility-evidence.spec.js | ||
|
|
||
| - name: Preserve visual accessibility evidence | ||
| if: ${{ always() }} | ||
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | ||
| with: | ||
| name: scopeweave-visual-accessibility-${{ github.run_id }}-${{ github.run_attempt }} | ||
| path: test-results | ||
| if-no-files-found: error | ||
| retention-days: 3 |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.