Skip to content
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

Staging Release #1571

Merged
merged 4 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ permissions:
contents: write
jobs:
test:
name: Test (${{ matrix.shard }} / ${{ strategy.job-total}})
continue-on-error: true
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
matrix:
shard: [ 1, 2, 3, 4 ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -20,14 +25,15 @@ jobs:
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium
- name: Run Playwright tests
run: yarn playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
env:
PLAYWRIGHT_JSON_OUTPUT_NAME: report-${{ matrix.shard }}.json
run: |
yarn playwright test \
--shard ${{ matrix.shard }}/${{ strategy.job-total }} \
--reporter=json
- uses: daun/playwright-report-summary@v3
if: always()
with:
report-file: test-results.json
report-file: report-${{ matrix.shard }}.json
report-tag: ${{ matrix.shard }}
comment-title: 'Test results (${{ matrix.shard }}/${{ strategy.job-total }})'
2 changes: 2 additions & 0 deletions src/components/Widgets/Widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,11 @@ export function Widget({
},
bridges: {
allow: configTheme?.allowedBridges,
deny: ['allbridge', 'hop', 'celerim', 'squid'],
},
exchanges: {
allow: configTheme?.allowedExchanges,
deny: ['bebop', 'paraswap', '0x'],
},
languages: {
default: i18n.language as LanguageKey,
Expand Down
Loading