Skip to content

feat: WalletConnect support via Reown AppKit + wagmi #1

feat: WalletConnect support via Reown AppKit + wagmi

feat: WalletConnect support via Reown AppKit + wagmi #1

Workflow file for this run

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 }}