fix: Using hardcoding max cap #211
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: Tests | |
on: | |
pull_request: | |
push: | |
branches: [main, release, dev] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
submodules: recursive | |
- name: Checkout submodules | |
run: git submodule update --init --recursive --remote | |
- name: Reconfigure git to use HTTP authentication | |
run: > | |
git config --global url."https://github.com/".insteadOf | |
ssh://[email protected]/ | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dev dependencies | |
run: yarn install --frozen-lockfile | |
- name: Compile code (Hardhat) | |
run: yarn compile | |
- name: Force Compile code (Hardhat) | |
run: yarn compile:force | |
- name: Run forge tests | |
run: forge test -vvv | |
- name: Run TypeScript/Waffle tests | |
run: yarn test | |
env: | |
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }} | |
- name: Run Coverage | |
run: yarn test:coverage | |
env: | |
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }} | |
- name: Publish coverage | |
uses: codecov/codecov-action@v1 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |