Skip to content

feat(data-access): add get haqq whitepaper method #818

feat(data-access): add get haqq whitepaper method

feat(data-access): add get haqq whitepaper method #818

name: Governance Preview Deployment
on:
push:
branches:
- dev
pull_request:
branches:
- dev
workflow_dispatch:
merge_group:
jobs:
Deploy-Preview:
runs-on: ubuntu-cpu16-ram64
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_GOVERNANCE_PROJECT_ID }}
NX_SKIP_NX_CACHE: true
GIT_COMMIT_SHA: ${{ github.sha }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Install Vercel CLI
run: npm install -g vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build ./apps/governance --token=${{ secrets.VERCEL_TOKEN }} --local-config vercel-react.json
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --local-config vercel-react.json