Rename chainID to blockchainID #874
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: Linter | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
solhint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout teleporter | |
uses: actions/checkout@v4 | |
- name: Install solhint | |
run: | | |
npm install solhint -g | |
solhint --version | |
# "solhint **/*.sol" runs differently than "solhint '**/*.sol'", where the latter checks sol files | |
# in subdirectories. The former only checks sol files in the current directory and directories one level down. | |
- name: Run Lint | |
run: | | |
./scripts/lint.sh |