feat: add disclaimer to DAO page #988
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
name: Production:Pull Request CI / CD | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, reopened, synchronize , edited] | |
jobs: | |
build-test-deploy-prod: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: yarn | |
- name: Check Format | |
run: yarn format | |
- name: Lint | |
run: yarn lint | |
- name: Build App | |
run: | | |
yarn build | |