Skip to content

End-to-end testing #269

End-to-end testing

End-to-end testing #269

Workflow file for this run

name: End-to-end testing
on:
deployment_status:
jobs:
e2e:
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && contains(github.event.deployment_status.environment_url, 'rollups-explorer-sepolia')
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: latest
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install Playwright
run: yarn playwright install --with-deps
- name: Run e2e tests
run: yarn test:e2e
env:
E2E_BASE_URL: ${{ github.event.deployment_status.environment_url }}