From ebcb87400ee7c581a9a5af6f17b27b2854aa662f Mon Sep 17 00:00:00 2001 From: Jolly Good <1671375+good-lly@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:19:01 +0200 Subject: [PATCH] add test cf workflow delay sleep so its not interrupting the other workers --- .github/workflows/test-cf-dev.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-cf-dev.yml b/.github/workflows/test-cf-dev.yml index 2842374..8d0e8f4 100644 --- a/.github/workflows/test-cf-dev.yml +++ b/.github/workflows/test-cf-dev.yml @@ -9,7 +9,7 @@ on: jobs: test: runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 15 steps: - uses: actions/checkout@v4 @@ -17,6 +17,10 @@ jobs: with: node-version: 20 + - name: Sleep for 130 seconds + run: sleep 130s + shell: bash + - name: Install dependencies run: npm install