-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve e2e workflow execution (#1502)
* Remove explicit node setup * First attempt to make devnet tests use the standard cypress github action * Make names shorter; cant read them on github UI * Attempt to fix quotes * Attempt #2 * Attempt #3 * Attempt #4: see cypress limitations cypress-io/github-action#482 * Remove manual node setup * Proper golang cache setup * Beautify script
- Loading branch information
Showing
2 changed files
with
25 additions
and
24 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
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,9 @@ | ||
#!/usr/bin/env sh | ||
./erigon/build/bin/erigon \ | ||
--chain=dev \ | ||
--datadir=dev \ | ||
--http.api eth,erigon,trace,ots,ots2 \ | ||
--http.corsdomain "*" \ | ||
--http.vhosts "*" \ | ||
--mine \ | ||
--fakepow |