diff --git a/.github/workflows/e2e-linux.yml b/.github/workflows/e2e-linux.yml index f161c745f3..2c90a300d3 100644 --- a/.github/workflows/e2e-linux.yml +++ b/.github/workflows/e2e-linux.yml @@ -62,13 +62,6 @@ jobs: max_attempts: 3 command: cd packages/e2e-tests && npm run test userProfile.test.ts - - name: Run invitation link test - Includes 2 separate application clients - uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 - with: - timeout_minutes: 25 - max_attempts: 1 - command: cd packages/e2e-tests && npm run test invitationLink.test.ts - - name: Run Backwards Compatibility test uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 with: @@ -82,3 +75,10 @@ jobs: timeout_minutes: 25 max_attempts: 3 command: cd packages/e2e-tests && npm run test multipleClients.test.ts + + - name: Run invitation link test - Includes 2 separate application clients + uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 + with: + timeout_minutes: 25 + max_attempts: 1 + command: cd packages/e2e-tests && npm run test invitationLink.test.ts diff --git a/.github/workflows/e2e-mac.yml b/.github/workflows/e2e-mac.yml index d80716d3c2..c707c4bb9d 100644 --- a/.github/workflows/e2e-mac.yml +++ b/.github/workflows/e2e-mac.yml @@ -53,13 +53,6 @@ jobs: - name: Add App file to applications run: cd ~ && cp -R "/Volumes/Quiet $VERSION/Quiet.app" /Applications - - name: Run invitation link test - Includes 2 separate application clients - uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 - with: - timeout_minutes: 25 - max_attempts: 3 - command: cd packages/e2e-tests && npm run test invitationLink.test.ts - - name: Run one client test uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 with: @@ -80,3 +73,10 @@ jobs: timeout_minutes: 25 max_attempts: 3 command: cd packages/e2e-tests && npm run test multipleClients.test.ts + + - name: Run invitation link test - Includes 2 separate application clients + uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 + with: + timeout_minutes: 25 + max_attempts: 3 + command: cd packages/e2e-tests && npm run test invitationLink.test.ts diff --git a/.github/workflows/e2e-win.yml b/.github/workflows/e2e-win.yml index 7ea6c7beae..5fe66366a4 100644 --- a/.github/workflows/e2e-win.yml +++ b/.github/workflows/e2e-win.yml @@ -102,19 +102,18 @@ jobs: shell: bash command: cd packages/e2e-tests && npm run test userProfile.test.ts - - name: Run invitation link test - Includes 2 separate application clients + - name: Run multiple clients test uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 with: - timeout_minutes: 10 + timeout_minutes: 30 max_attempts: 3 shell: bash - command: cd packages/e2e-tests && npm run test invitationLink.test.ts - + command: cd packages/e2e-tests && npm run test multipleClients.test.ts - - name: Run multiple clients test + - name: Run invitation link test - Includes 2 separate application clients uses: nick-fields/retry@14672906e672a08bd6eeb15720e9ed3ce869cdd4 # v2.9.0 with: - timeout_minutes: 30 + timeout_minutes: 10 max_attempts: 3 shell: bash - command: cd packages/e2e-tests && npm run test multipleClients.test.ts + command: cd packages/e2e-tests && npm run test invitationLink.test.ts