-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c722bbe
commit d806ace
Showing
3 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,6 @@ jobs: | |
- name: Install dependencies | ||
run: yarn install --frozen-lockfile --network-concurrency 1 | ||
- name: Run eslint | ||
continue-on-error: true | ||
run: yarn run eslint | ||
solhint: | ||
name: Run solhint | ||
|
@@ -68,8 +67,17 @@ jobs: | |
- name: Install dependencies | ||
run: yarn install --frozen-lockfile --network-concurrency 1 | ||
- name: Run solhint | ||
continue-on-error: true | ||
run: yarn run solhint contracts/**/*.sol | ||
slither: | ||
name: Run slither | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
- name: Run slither | ||
uses: crytic/[email protected] | ||
with: | ||
slither-args: --compile-force-framework forge --foundry-out-directory foundry-out | ||
publish: | ||
name: Publish to NPM (dry run) | ||
runs-on: ubuntu-latest | ||
|
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"filter_paths": "lib" | ||
} | ||
|