Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vmaark committed Dec 20, 2024
1 parent b432c40 commit 0a0e8f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,11 @@ jobs:
- name: Build Hardhat
run: pnpm compile

- name: Style
run: pnpm style

- name: Forge Build
run: pnpm forge-build
run: pnpm compile:forge

- name: Forge Fmt
run: pnpm forge-fmt
run: pnpm style:solidity

- name: Test Hardhat
run: pnpm test:hardhat
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@
"deploy:arbitrum-sepolia": "hardhat deploy --network arbitrumSepolia",
"deploy:arbitrum-one": "hardhat deploy --network arbitrumOne",
"compile": "hardhat compile",
"compile:forge": "forge build",
"clean": "hardhat clean",
"test:hardhat": "hardhat test --network hardhat",
"test:forge": "forge test --zksync"
"test:forge": "forge test --zksync",
"style:solidity": "forge fmt"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit 0a0e8f5

Please sign in to comment.