feat: always check for 0x0 address returned by get_reserve_address_b… #346
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: npm audit | |
| on: | |
| pull_request: | |
| merge_group: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 10 * * *' | |
| jobs: | |
| npm-scan: | |
| name: aave-test-suite | |
| runs-on: Larger-Github-Runners | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| run_install: false | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| working-directory: aave-test-suite | |
| - name: Run pnpm audit | |
| run: pnpm audit | |
| working-directory: aave-test-suite |