Chore: Move helpers to its own repo #76
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: Relayer CI | |
env: | |
CI: true | |
on: | |
push: | |
branches: "*" | |
paths: | |
- packages/relayer/** | |
pull_request: | |
branches: "*" | |
paths: | |
- packages/relayer/** | |
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-relayer 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-relayer test |