feat: WalletConnect support via Reown AppKit + wagmi #1
Workflow file for this run
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
| name: Secret scan | |
| # Server-side secret scan. Runs on every PR and every push to main, so it | |
| # cannot be bypassed by `git commit --no-verify`. The husky pre-commit hook | |
| # (.husky/pre-commit) provides the same check locally for faster feedback. | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| gitleaks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| # gitleaks needs full history so it can scan every commit on the | |
| # branch, not just the latest one. | |
| fetch-depth: 0 | |
| - name: Run gitleaks | |
| uses: gitleaks/gitleaks-action@v2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |