fix: use abi for external Aave contract compatible with all networks #1137
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: CI | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, reopened, synchronize, ready_for_review] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: {} | |
jobs: | |
verify: | |
name: Verify | |
uses: ./.github/workflows/reusable-verify.yaml | |
secrets: inherit | |
docs: | |
name: Documentation | |
uses: ./.github/workflows/reusable-docs.yaml | |
secrets: inherit | |
permissions: | |
pages: write | |
id-token: write | |
snapshot: | |
name: Snapshot | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Run build | |
run: pnpm build | |
- name: Create snapshot | |
run: pnpx [email protected] publish --compact --comment=update --pnpm ./packages/* |