Skip to content

Commit

Permalink
ci: switch server order in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oscb committed Nov 30, 2023
1 parent d30a0dc commit d4da6f2
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,13 @@ jobs:
- name: Bundle Build
run: yarn build

- name: Run Server (with mocks)
run: yarn example start:e2e &

- name: Detox - Build
run: yarn example build:ios

# Important to do this after build, as a build will kill any running metro server
- name: Run Server (with mocks)
run: yarn example start:e2e &

- name: Detox - Test
run: |
yarn example detox clean-framework-cache
Expand Down Expand Up @@ -144,11 +145,13 @@ jobs:
run: yarn install && yarn example install # No need to run bootstrap here since we don't need cocoapods
- name: Bundle build
run: yarn build
- name: Run Server (with mocks)
run: yarn example start:e2e &

- name: Detox - Build
run: yarn example build:android

- name: Run Server (with mocks)
run: yarn example start:e2e &

- name: Detox - Test
uses: reactivecircus/android-emulator-runner@v2
with:
Expand Down

0 comments on commit d4da6f2

Please sign in to comment.