chore: update DataProvider (#133) #560
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 | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
- 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: Install Foundry | |
uses: onbjerg/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Compile code (Hardhat) | |
run: yarn compile:force | |
- name: Run TypeScript/Waffle tests | |
run: yarn test | |
- name: Run Forge tests TestWooracleV2_2 | |
run: forge test --fork-url https://rpc.ankr.com/eth --match-contract TestWooracleV2_2 -vv | |
- name: Run Forge tests SwapTests | |
run: forge test --fork-url https://arb1.arbitrum.io/rpc --match-contract SwapTests -vv | |
- name: Run Forge tests AMMTests | |
run: forge test --fork-url https://arb1.arbitrum.io/rpc --match-contract AMMTests -vv |