This repository was archived by the owner on Jun 16, 2026. It is now read-only.
feat: Add flashloan hints to the app-data. #313
Workflow file for this run
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: Build | |
| # Run on pushes to main or PRs | |
| on: | |
| # Pull request hook without any config. Launches for every pull request | |
| pull_request: | |
| # Launches for pushes to main or dev | |
| push: | |
| branches: | |
| - main | |
| # Launches build when release is published | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| name: Build Package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 14 | |
| - name: Cache Yarn dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| node_modules | |
| key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-yarn- | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Build app | |
| run: yarn build |