Skip to content

Commit

Permalink
ci: fix gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0xnigir1 committed Sep 9, 2024
1 parent 53e12f9 commit c3276ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ runs:

- name: Use foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
4 changes: 2 additions & 2 deletions packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"type": "module",
"scripts": {
"build": "forge build",
"lint": "pnpm lint:sol-tests && pnpm lint:sol-logic && forge fmt --check",
"lint": "forge fmt",
"lint:fix": "forge fmt && pnpm lint:sol-tests --fix && pnpm lint:sol-logic --fix",
"lint:sol-logic": "solhint -c .solhint.json 'src/**/*.sol' 'script/**/*.sol'",
"lint:sol-logic": "solhint -c .solhint.json 'src/**/*.sol'",
"lint:sol-tests": "solhint -c .solhint.tests.json 'test/**/*.sol'",
"test": "forge test -vvv",
"test:cov": "forge coverage --report summary --report lcov --match-path 'test/unit/*'"
Expand Down

0 comments on commit c3276ae

Please sign in to comment.