Web3 integrations #102
Workflow file for this run
This file contains 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
# .github/workflows/preview.yml | |
name: preview | |
on: | |
push: | |
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: | |
preview: | |
runs-on: ubuntu-latest | |
environment: | |
name: preview | |
url: ${{ steps.deploy.outputs.url }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
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 --cwd packages/app/ --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | |
- run: yarn vercel build --cwd packages/app --token=${{ secrets.VERCEL_TOKEN }} | |
- id: deploy | |
run: echo "::set-output name=url::$(yarn vercel deploy --prebuilt --cwd packages/app --token=${{ secrets.VERCEL_TOKEN }})" |