V3 vaults #413
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Cache node modules | |
id: cache-npm | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} | |
name: List the state of node modules | |
continue-on-error: true | |
run: npm list | |
- name: Install dependencies | |
run: npm install | |
- run: npm run lint | |
- run: npm run compile | |
env: { SKIP_LOAD: true } | |
- run: npm run test:gas | |
env: | |
SKIP_LOAD: true | |
MAINNET_FORK_RPC_URL: ${{ secrets.MAINNET_FORK_RPC_URL }} | |
- run: npm run test:fork | |
env: | |
SKIP_LOAD: true | |
MAINNET_FORK_RPC_URL: ${{ secrets.MAINNET_FORK_RPC_URL }} | |
- run: npm run coverage | |
env: | |
SKIP_LOAD: true | |
MAINNET_FORK_RPC_URL: ${{ secrets.MAINNET_FORK_RPC_URL }} | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- run: pip3 install slither-analyzer && npm run slither |