Skip to content

Commit 348f101

Browse files
committed
Make release use tests and increase timeout
1 parent da29378 commit 348f101

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ on:
66
workflow_dispatch: # Allows manual triggering
77

88
jobs:
9+
e2e:
10+
uses: ./.github/workflows/tests.yml
11+
912
update:
1013
name: Update version
14+
needs: e2e
1115
runs-on: ubuntu-latest
1216
timeout-minutes: 10
1317
permissions:

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: E2E Tests
22

33
on:
4+
workflow_call:
45
push:
56
pull_request:
67

tests/Pest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Pest\Browser\Api\Webpage;
1717

1818
pest()->extend(TestCase::class)->in('Feature');
19-
pest()->browser()->timeout(30000);
19+
pest()->browser()->timeout(60000);
2020

2121
/*
2222
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)