diff --git a/.github/workflows/integration_app_harness.yml b/.github/workflows/integration_app_harness.yml index f0dd277bb..9f90bc079 100644 --- a/.github/workflows/integration_app_harness.yml +++ b/.github/workflows/integration_app_harness.yml @@ -52,7 +52,7 @@ jobs: SCREENSHOT_DIR: /tmp/screenshots REDIS_URL: ${{ matrix.state_manager == 'redis' && 'redis://localhost:6379' || '' }} with: - timeout_minutes: 25 + timeout_minutes: 30 max_attempts: 2 command: | poetry run playwright install --with-deps diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 58f7a668a..d5e22a23b 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -156,10 +156,14 @@ jobs: working-directory: ./reflex-web run: poetry run reflex init - name: Run Website and Check for errors - run: | - # Check that npm is home - npm -v - poetry run bash scripts/integration.sh ./reflex-web prod + uses: nick-fields/retry@v3 + with: + timeout_minutes: 30 + max_attempts: 2 + command: | + # Check that npm is home + npm -v + poetry run bash scripts/integration.sh ./reflex-web prod - name: Measure and upload .web size run: poetry run python benchmarks/benchmark_web_size.py --os "${{ matrix.os }}"