From e950384b9bc1cc7392fe40e77e064b00cf3aecc2 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Thu, 19 Mar 2026 09:36:47 +0100 Subject: [PATCH 1/2] ci: sleep 5s to wait node startup --- .github/workflows/e2e-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index a8e36ca5..66aa09c7 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -198,7 +198,7 @@ jobs: node webbotauth/validator.js & VALIDATOR_PID=$! - sleep 2 + sleep 5 exec 3<<< "${{ secrets.WBA_PRIVATE_KEY_PEM }}" From 59175437b501ffd6a6bc93b178e9d690b51c8dea Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Thu, 19 Mar 2026 09:40:47 +0100 Subject: [PATCH 2/2] wpt: force a wakeup of the wbauth server before the test --- .github/workflows/e2e-test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 66aa09c7..0e59cd24 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -192,10 +192,12 @@ jobs: - run: chmod a+x ./lightpanda + # force a wakup of the auth server before requesting it w/ the test itself + - run: curl https://${{ vars.WBA_DOMAIN }} + - name: run wba test shell: bash run: | - node webbotauth/validator.js & VALIDATOR_PID=$! sleep 5