feat: add bridge call into fx bridge eth #31
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: Solhint | |
on: | |
push: | |
paths: | |
- "solidity/contracts/**" | |
pull_request: | |
paths: | |
- "solidity/contracts/**" | |
permissions: | |
contents: read | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
solhint: | |
name: runner solhint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
check-latest: false | |
cache: "yarn" | |
cache-dependency-path: solidity/yarn.lock | |
- run: cd solidity && yarn install && yarn lint:sol |