mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
ci: fix fetch submodule (#248)
This PR fixes the E2E checkout failure by fetching full history instead of a depth-1 clone so the Snowbridge forge-std submodule can resolve its pinned commit.
This commit is contained in:
parent
4eca467514
commit
48f8add3c4
1 changed files with 6 additions and 5 deletions
11
.github/workflows/task-e2e.yml
vendored
11
.github/workflows/task-e2e.yml
vendored
|
|
@ -46,6 +46,7 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- name: Install Foundry
|
||||
uses: foundry-rs/foundry-toolchain@v1
|
||||
|
|
@ -129,16 +130,16 @@ jobs:
|
|||
chmod +x tmp/bin/snowbridge-relay
|
||||
docker rm -fv temp
|
||||
tmp/bin/snowbridge-relay --help
|
||||
|
||||
- name: Pull DataHaven node image
|
||||
|
||||
- name: Pull DataHaven node image
|
||||
run: |
|
||||
docker pull ghcr.io/datahaven-xyz/datahaven/datahaven:${{ inputs.image-tag }}
|
||||
docker tag ghcr.io/datahaven-xyz/datahaven/datahaven:${{ inputs.image-tag }} datahavenxyz/datahaven:local
|
||||
|
||||
|
||||
- run: bun install
|
||||
- name: Run E2E tests
|
||||
run: bun test:e2e
|
||||
|
||||
|
||||
- name: Delete volumes not used
|
||||
if: always()
|
||||
run: podman system prune --volumes -f
|
||||
run: podman system prune --volumes -f
|
||||
|
|
|
|||
Loading…
Reference in a new issue