Chore: Move helpers to its own repo #46
Workflow file for this run
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: Price Oracle CI | |
env: | |
CI: true | |
on: | |
push: | |
branches: "*" | |
paths: | |
- packages/price-oracle/** | |
pull_request: | |
branches: "*" | |
paths: | |
- packages/price-oracle/** | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Lint | |
run: yarn workspace @mimic-fi/v3-price-oracle lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn workspace @mimic-fi/v3-price-oracle test | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Set up hardhat config | |
run: .github/scripts/setup-hardhat-config.sh ${{secrets.MAINNET_RPC}} ${{secrets.POLYGON_RPC}} ${{secrets.OPTIMISM_RPC}} ${{secrets.ARBITRUM_RPC}} ${{secrets.GNOSIS_RPC}} ${{secrets.AVALANCHE_RPC}} ${{secrets.BSC_RPC}} ${{secrets.FANTOM_RPC}} ${{secrets.ZKEVM_RPC}} | |
- name: Build | |
run: yarn build | |
- name: Test mainnet | |
run: yarn workspace @mimic-fi/v3-price-oracle test:mainnet | |
- name: Test polygon | |
run: yarn workspace @mimic-fi/v3-price-oracle test:polygon |