feat: swap adapter #425
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
on: [pull_request] | |
name: Linter check | |
jobs: | |
lint-solidity: | |
name: Lint Solidity | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- run: yarn install --frozen-lockfile --non-interactive | |
- name: Run linter | |
run: yarn run lint:solidity | |
lint-js: | |
name: Lint JS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- run: yarn install --frozen-lockfile --non-interactive | |
- name: Run linter | |
run: yarn run lint:js |