diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index df35275..21b71e8 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -58,6 +58,10 @@ jobs: if: steps.pkg.outputs.has_test == 'true' run: npm test + - name: Run accessibility (axe-core) tests + if: steps.pkg.outputs.has_test == 'true' + run: npm run test:a11y:ci + - name: Run unit tests with coverage if: steps.pkg.outputs.has_test == 'true' run: npm run test:coverage @@ -124,4 +128,4 @@ jobs: with: name: playwright-report path: frontend/playwright-report/ - retention-days: 7 + retention-days: 7 \ No newline at end of file diff --git a/frontend/components/wallet-connect.tsx b/frontend/components/wallet-connect.tsx index 5219a57..e580f5a 100644 --- a/frontend/components/wallet-connect.tsx +++ b/frontend/components/wallet-connect.tsx @@ -49,7 +49,7 @@ export function WalletConnect({ onConnected, onRejected }: WalletConnectProps) {