Skip to content

Commit

Permalink
Merge pull request #828 from WalletConnect/fix/gh-action-timeout
Browse files Browse the repository at this point in the history
[CICD] Set lower timeout time
  • Loading branch information
llbartekll authored May 8, 2023
2 parents 6500707 + 3ed7b6e commit 265a0a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ on:
jobs:
build:
runs-on: macos-12
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
test:
needs: prepare
runs-on: macos-12
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion Example/IntegrationTests/Sign/SignClientTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ final class SignClientTests: XCTestCase {
let uri = try await dapp.client.connect(requiredNamespaces: requiredNamespaces)!
try await wallet.client.pair(uri: uri)

wait(for: [expectation], timeout: .infinity)
wait(for: [expectation], timeout: InputConfig.defaultTimeout)
}

func testSessionRequest() async throws {
Expand Down

0 comments on commit 265a0a6

Please sign in to comment.