Add ILiquidityPool.balance(token) implementations #224
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: Test | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use default .env | |
run: mv .env.example .env | |
- name: Install Node.js 22 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Compile contracts | |
run: npm run compile | |
- name: Hardhat Tests | |
run: npm run test | |
- name: Hardhat Fork Tests | |
run: npm run test:ethereum | |
- name: Script Tests | |
run: npm run test:scripts |