Fixes to balance calculations on Aave V3 and Beefy #38
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: run-core-tests | |
on: [push] | |
jobs: | |
run-core-tests: | |
env: | |
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }} | |
ZEROX_API_KEY: ${{ secrets.ZEROX_API_KEY }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: Install packages | |
run: npm install | |
working-directory: ./core | |
- name: Run core tests | |
run: | | |
npm run test | |
working-directory: ./core |