Skip to content

Merge pull request #4 from 1inch/fix/dependabot-issues #17

Merge pull request #4 from 1inch/fix/dependabot-issues

Merge pull request #4 from 1inch/fix/dependabot-issues #17

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn test
env:
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn coverage
env:
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}