Skip to content

Commit af45d19

Browse files
committed
chore(workflows): enable recursive submodules checkout for build-distributor and build-shovel workflows
1 parent da84c25 commit af45d19

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.github/workflows/build-distributor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
steps:
3434
- name: Checkout repository
3535
uses: actions/checkout@v4
36+
with:
37+
submodules: recursive
3638

3739
- name: Set up Docker Buildx
3840
uses: docker/setup-buildx-action@v3

.github/workflows/build-shovel.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
steps:
3434
- name: Checkout repository
3535
uses: actions/checkout@v4
36+
with:
37+
submodules: recursive
3638

3739
- name: Set up Docker Buildx
3840
uses: docker/setup-buildx-action@v3

packages/playwright/tests/earn.onboarded.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,7 @@ for (const coin of [usdcCoin]) {
581581

582582
test.describe(`Withdraw ${coin.symbol}`, () => {
583583
test.beforeEach(async ({ user: { profile }, earnDepositPage, sendAccount, supabase }) => {
584+
test.setTimeout(60_000)
584585
log = debug(`test:earn:withdraw:${profile.id}:${test.info().parallelIndex}`)
585586

586587
// First deposit some funds to be able to withdraw

0 commit comments

Comments
 (0)