forked from scaffold-eth/scaffold-eth-2
-
Notifications
You must be signed in to change notification settings - Fork 6
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
c17a7f0
commit 8365035
Showing
6 changed files
with
42 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"create-eth": patch | ||
--- | ||
|
||
fix foundry gh-actions |
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
11 changes: 11 additions & 0 deletions
11
templates/extensions/foundry/.github/workflows/lint.yaml.args.mjs
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,11 @@ | ||
export const solidityEnvSetup = ` | ||
- name: Install foundry-toolchain | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly | ||
- name: Run foundry node, deploy contracts (& generate contracts typescript output) | ||
env: | ||
ETHERSCAN_API_KEY: \${{ secrets.ETHERSCAN_API_KEY }} | ||
run: yarn chain & yarn deploy | ||
`; |
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
2 changes: 0 additions & 2 deletions
2
templates/extensions/foundry/packages/foundry/deployments/.gitignore
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
templates/extensions/hardhat/.github/workflows/lint.yaml.args.mjs
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,7 @@ | ||
export const solidityEnvSetup = ` | ||
- name: Run hardhat node, deploy contracts (& generate contracts typescript output) | ||
run: yarn chain & yarn deploy | ||
- name: Run hardhat lint | ||
run: yarn hardhat:lint --max-warnings=0 | ||
`; |