Skip to content

Feat: support more wallets using reown #500

Feat: support more wallets using reown

Feat: support more wallets using reown #500

Workflow file for this run

# .github/workflows/preview.yml
name: preview
on:
push:
branches:
- master
pull_request_target:
branches:
- master
pull_request:
types: [opened, synchronize, edited, ready_for_review]
branches:
- master
workflow_dispatch:
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
jobs:
authorize:
environment: ${{ github.event_name == 'pull_request_target' &&
github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
runs-on: ubuntu-latest
steps:
- run: true
preview:
runs-on: ubuntu-latest
environment:
name: preview
url: ${{ steps.deploy.outputs.url }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- run: yarn install --immutable
# build the local mono-repo dependencies
- run: yarn build:contracts
- run: yarn build:sdk
- run: yarn vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- run: echo "$(node -v)"
- run: yarn vercel build --token=${{ secrets.VERCEL_TOKEN }}
- id: deploy
run: echo "::set-output name=url::$(yarn vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})"