chore: add slot finality checking #382
Workflow file for this run
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
--- | |
name: E2E tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.20.1' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --non-interactive | |
- name: Build components | |
run: yarn build | |
- name: Run e2e tests | |
run: yarn test:e2e | |
env: | |
ETH_NETWORK: 1 | |
CL_API_URLS: ${{ secrets.CL_API_URL }} | |
CL_API_GET_RESPONSE_TIMEOUT: 60000 | |
TEST_EPOCH_NUMBER: 152978 | |
TEST_STATE_SLOT: 4895327 | |
# stub | |
VALIDATOR_REGISTRY_SOURCE: file |