-
Notifications
You must be signed in to change notification settings - Fork 4
49 lines (42 loc) · 1.37 KB
/
solidity_lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Solidity Lint
on:
push:
pull_request:
merge_group:
jobs:
detect-changes:
uses: ./.github/workflows/check_diff.yaml
with:
pattern: ^contracts/\|^test/\|^lib/\|^foundry\.toml$\|^cSpell\.json$\|^package\.json$\|^yarn\.lock$\|^\.prettierrc$\|^\.prettierignore$\|^\.solhint\.json$\|^\.github/workflows/solidity_lint\.yml$
lint:
name: solidity lint
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.changed == 'true'
env:
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
SEPOLIA_RPC_URL: ${{ secrets.SEPOLIA_RPC_URL }}
BASE_RPC_URL: ${{ secrets.BASE_RPC_URL }}
GNOSIS_CHAIN_RPC_URL: ${{ secrets.GNOSIS_CHAIN_RPC_URL }}
LINEA_RPC_URL: ${{ secrets.LINEA_RPC_URL }}
ARBITRUM_RPC_URL: ${{ secrets.ARBITRUM_RPC_URL }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: install node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: install packages
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed
- name: install foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: lint
run: make lint-sol