Skip to content

Run a recent full Optimism block in the Hardhat Network #110

Run a recent full Optimism block in the Hardhat Network

Run a recent full Optimism block in the Hardhat Network #110

name: Run a recent full Optimism block in the Hardhat Network
on:
schedule:
- cron: "0 */8 * * *"
workflow_dispatch:
jobs:
test-recent-optimism-block:
name: Test recent Optimism block
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: feat/multichain
- uses: ./.github/actions/setup-rust
- name: Cache EDR RPC cache
uses: actions/cache@v4
with:
path: |
**/edr-cache
key: test-recent-optimism-block-rpc-cache-v1
- run: cargo replay-block -u ${{ secrets.ALCHEMY_URL }} -c optimism
- name: Notify failures
if: failure()
uses: slackapi/[email protected]
with:
payload: |
{
"workflow_name": "${{ github.workflow }}",
"run_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.GH_ACTION_NOTIFICATIONS_SLACK_WEBHOOK_URL }}