chore: Revert back to use explorer api (#10923) #11659
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: 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 |