feat: add usd input mode toggle for swap #41
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: Test Config | |
| on: | |
| pull_request: | |
| paths: | |
| - 'apps/web/src/config/**' | |
| - 'packages/pools/src/**' | |
| - 'packages/farms/constants/**' | |
| - 'packages/tokens/src/**' | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 6 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| node: [18] | |
| name: Config (Jest) | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Install dependencies | |
| uses: './.github/actions/install-deps' | |
| - name: Run tests | |
| run: pnpm test:config |