Feat/add extra fee option per pending fragment and thegraph #129
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: Lint check contracts | |
on: [pull_request] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
linter: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ["18"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Yarn install | |
run: yarn install --check-cache | |
### Run lint | |
- name: Check contracts solidity linter | |
if: always() | |
run: yarn run pr:lint:check:contracts | |
- name: Check contracts tests linter | |
if: always() | |
run: yarn run pr:lint:check:tests |