Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add timeout to e2e tests #553

Merged
merged 4 commits into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
tests-e2e:
name: E2E Tests
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -39,6 +40,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Start Test Node
timeout-minutes: 3
run: pnpm node:start

# E2E tests running with Playwright
Expand All @@ -60,6 +62,7 @@ jobs:
tests-e2e-soft:
name: E2E Tests Soft
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 7
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -83,6 +86,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Start Test Node
timeout-minutes: 3
run: pnpm node:start

# E2E tests running with Playwright
Expand Down
Loading