Skip to content

Hide validation stuff from transact page #49

Hide validation stuff from transact page

Hide validation stuff from transact page #49

Workflow file for this run

name: Deploy Frontend
on:
push:
branches: [main]
permissions:
contents: write
jobs:
# Build web and upload the artifact.
build_web:
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
steps:
- uses: actions/checkout@v3
# Install pnpm
- uses: pnpm/action-setup@v2
with:
version: 8.9.0
run_install: false
# Install deps and build.
- run: pnpm install
- run: CI= pnpm build
# Upload the artifact.
- uses: actions/upload-pages-artifact@v1
with:
path: build
# Deploy web using the artifact from the previous job.
deploy_web:
runs-on: ubuntu-latest
needs: [build_web]
concurrency: ci-${{ github.ref }}
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/configure-pages@v1
- id: deployment
uses: actions/deploy-pages@v1