add --refill-helper-contract flag #421
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: Run Kinto-E2E Tests | |
env: | |
KINTO_RPC: ${{ secrets.KINTO_RPC }} | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
kinto-e2e: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Install and build alto | |
run: pnpm install && pnpm build | |
- name: Install test dependencies | |
run: cd test/kinto-e2e && pnpm install . | |
- name: Start tests | |
run: cd test/kinto-e2e && pnpm run test |