feat: Add debounce and abort signal to position manager, make calls per chain instead of per gauge #30722
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: Unit Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- develop | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 6 | |
strategy: | |
fail-fast: true | |
matrix: | |
node: [18] | |
name: Unit tests (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:ci |