feat: expose user earned/debt APY in MarketUserState #427
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: Pull Request | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| changeset: | |
| name: Changeset | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # important: full history, otherwise no common ancestor | |
| ref: ${{ github.head_ref || github.ref_name }} | |
| - name: Fetch base branch | |
| shell: bash | |
| run: | | |
| git fetch origin ${{ github.base_ref }}:${{ github.base_ref }} | |
| - name: Setup Repository | |
| uses: ./.github/actions/setup | |
| - name: Ensure Changeset Added | |
| shell: bash | |
| run: pnpm changeset status --since=${{ github.base_ref }} | |
| verify: | |
| name: Verify | |
| uses: ./.github/workflows/verify.yml | |
| secrets: inherit | |
| with: | |
| run-acceptance: false |