fix: stop reporting failed balance reads as zero in getUserBalances (MOO-832) #149
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: PR Checks | |
| on: | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Install dependencies | |
| uses: ./.github/actions/install-dependencies | |
| - name: Lint repo | |
| run: pnpm lint:repo | |
| - name: Lint code | |
| run: pnpm exec biome ci . | |
| - name: Check types | |
| run: pnpm typecheck | |
| test: | |
| name: Test | |
| needs: lint | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Install dependencies | |
| uses: ./.github/actions/install-dependencies | |
| - name: Run tests | |
| run: pnpm test -- --run | |
| env: | |
| CI: true |