Use default USDC if Relay is disabled #1354
This file contains hidden or 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: Check Frontend Web App | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'web/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'web/**' | |
| jobs: | |
| format: | |
| name: Check Format | |
| uses: ./.github/workflows/format.yml | |
| secrets: inherit | |
| lint: | |
| name: Check Linting | |
| uses: ./.github/workflows/lint.yml | |
| secrets: inherit | |
| unit-test: | |
| name: Unit Tests | |
| uses: ./.github/workflows/tests-unit-js.yml | |
| secrets: inherit | |
| e2e-test: | |
| name: E2E Tests | |
| uses: ./.github/workflows/tests-e2e.yml | |
| secrets: inherit | |
| deploy: | |
| name: Deploy to Vercel | |
| uses: ./.github/workflows/deploy-webapp.yml | |
| secrets: inherit | |
| if: github.event_name == 'push' | |
| needs: | |
| - unit-test | |
| - e2e-test |