From e41f5c92ef0ce518df877b8957d31bc35a81428c Mon Sep 17 00:00:00 2001 From: siepra Date: Fri, 13 Oct 2023 09:36:49 +0200 Subject: [PATCH 1/3] chore: trigger detox on push --- .github/workflows/e2e-android.yml | 2 +- .github/workflows/e2e-ios.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-android.yml b/.github/workflows/e2e-android.yml index 2a97f7add3..1181a13983 100644 --- a/.github/workflows/e2e-android.yml +++ b/.github/workflows/e2e-android.yml @@ -1,7 +1,7 @@ name: E2E Android on: - pull_request: + push: paths: - packages/mobile/** diff --git a/.github/workflows/e2e-ios.yml b/.github/workflows/e2e-ios.yml index 5d4331fc5b..a834ada8e7 100644 --- a/.github/workflows/e2e-ios.yml +++ b/.github/workflows/e2e-ios.yml @@ -1,7 +1,7 @@ name: E2E iOS on: - pull_request: + push: paths: - packages/mobile/** From 4655f19ba210555984a4638716facee966b0e934 Mon Sep 17 00:00:00 2001 From: siepra Date: Fri, 13 Oct 2023 09:38:13 +0200 Subject: [PATCH 2/3] chore: dummy change to mobile package --- .../src/store/init/startConnection/startConnection.saga.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mobile/src/store/init/startConnection/startConnection.saga.ts b/packages/mobile/src/store/init/startConnection/startConnection.saga.ts index bf6b8a6410..18397808d9 100644 --- a/packages/mobile/src/store/init/startConnection/startConnection.saga.ts +++ b/packages/mobile/src/store/init/startConnection/startConnection.saga.ts @@ -35,7 +35,7 @@ function subscribeSocketLifecycle(socket: Socket, dataPort: number) { ReturnType | ReturnType >(emit => { socket.on('connect', async () => { - console.log('websocket connected') + console.log('web socket connected') emit( initActions.setWebsocketConnected({ dataPort, From 63464a63765ed733ca3fccef9245ac832364147b Mon Sep 17 00:00:00 2001 From: siepra Date: Fri, 13 Oct 2023 09:40:10 +0200 Subject: [PATCH 3/3] chore: Revert "chore: dummy change to mobile package" This reverts commit 4655f19ba210555984a4638716facee966b0e934. --- .../src/store/init/startConnection/startConnection.saga.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mobile/src/store/init/startConnection/startConnection.saga.ts b/packages/mobile/src/store/init/startConnection/startConnection.saga.ts index 18397808d9..bf6b8a6410 100644 --- a/packages/mobile/src/store/init/startConnection/startConnection.saga.ts +++ b/packages/mobile/src/store/init/startConnection/startConnection.saga.ts @@ -35,7 +35,7 @@ function subscribeSocketLifecycle(socket: Socket, dataPort: number) { ReturnType | ReturnType >(emit => { socket.on('connect', async () => { - console.log('web socket connected') + console.log('websocket connected') emit( initActions.setWebsocketConnected({ dataPort,