Skip to content

chore: update zksync testnet with Sepolia, deprecating Goerli #1125

chore: update zksync testnet with Sepolia, deprecating Goerli

chore: update zksync testnet with Sepolia, deprecating Goerli #1125

Workflow file for this run

name: Pull request
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
verify:
name: Verify
uses: ./.github/workflows/verify.yml
secrets: inherit
bench:
# Disable as benchmarking isn't working in CI
if: false
name: Benchmark
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Run benchmarks
run: bun run bench:ci
env:
VITE_ANVIL_BLOCK_NUMBER: ${{ vars.VITE_ANVIL_BLOCK_NUMBER }}
VITE_ANVIL_BLOCK_TIME: ${{ vars.VITE_ANVIL_BLOCK_TIME }}
VITE_ANVIL_FORK_URL: ${{ secrets.VITE_ANVIL_FORK_URL }}
- name: Report benchmarks
run: bun ./.github/scripts/bench.ts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
size:
name: Size
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-dependencies
- name: Report bundle size
uses: andresz1/size-limit-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
package_manager: bun