-
Notifications
You must be signed in to change notification settings - Fork 0
fix(meetings): query service tag filtering and committee data handling #74
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
8955ff0
fix(ui): query service tag filtering
asithade 20e6b82
fix(meetings): query service tag filtering and committee data handling
asithade ed46526
feat(e2e): add permission-based project dashboard tests
asithade 691d15d
feat(ci): implement Playwright browser caching for e2e tests
asithade 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,51 @@ | ||
| # Copyright The Linux Foundation and each contributor to LFX. | ||
| # SPDX-License-Identifier: MIT | ||
|
|
||
| name: Setup Playwright | ||
| description: Install Playwright and cache browser dependencies | ||
| inputs: | ||
| browser: | ||
| description: 'Browser to test (chromium, firefox, mobile-chrome, or all)' | ||
| required: false | ||
| default: 'all' | ||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| # Run npm ci and get Playwright version | ||
| - name: 🏗 Prepare Playwright env | ||
| shell: bash | ||
| run: | | ||
| PLAYWRIGHT_VERSION=$(npm ls --json @playwright/test | jq --raw-output '.dependencies["@playwright/test"].version') | ||
| echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV | ||
asithade marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # Cache browser binaries, cache key is based on Playwright version and OS | ||
| - name: 🧰 Cache Playwright browser binaries | ||
| uses: actions/cache@v4 | ||
| id: playwright-cache | ||
| with: | ||
| path: "~/.cache/ms-playwright" | ||
| key: "${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}" | ||
| restore-keys: | | ||
| ${{ runner.os }}-playwright- | ||
| # Install browser binaries & OS dependencies if cache missed | ||
| - name: 🏗 Install Playwright browser binaries & OS dependencies | ||
| if: steps.playwright-cache.outputs.cache-hit != 'true' | ||
| shell: bash | ||
| run: | | ||
| if [ "${{ inputs.browser }}" == "all" ]; then | ||
| npm exec -- playwright install --with-deps | ||
| else | ||
| npm exec -- playwright install --with-deps ${{ inputs.browser }} | ||
| fi | ||
| # Install only the OS dependencies if cache hit | ||
| - name: 🏗 Install Playwright OS dependencies | ||
| if: steps.playwright-cache.outputs.cache-hit == 'true' | ||
| shell: bash | ||
| run: | | ||
| if [ "${{ inputs.browser }}" == "all" ]; then | ||
| npm exec -- playwright install-deps | ||
| else | ||
| npm exec -- playwright install-deps ${{ inputs.browser }} | ||
| fi | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,6 +27,7 @@ | |
| "supabase", | ||
| "timegrid", | ||
| "Turborepo", | ||
| "Uids", | ||
| "viewports" | ||
| ], | ||
| "scss.lint.unknownAtRules": "ignore", | ||
|
|
||
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.
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.