Skip to content

Commit ebcb874

Browse files
committed
add test cf workflow delay sleep so its not interrupting the other workers
1 parent b63995a commit ebcb874

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test-cf-dev.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,18 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12-
timeout-minutes: 10
12+
timeout-minutes: 15
1313
steps:
1414
- uses: actions/checkout@v4
1515

1616
- uses: actions/setup-node@v4
1717
with:
1818
node-version: 20
1919

20+
- name: Sleep for 130 seconds
21+
run: sleep 130s
22+
shell: bash
23+
2024
- name: Install dependencies
2125
run: npm install
2226

0 commit comments

Comments
 (0)