Browse Source

Move to top

Jamon Holmgren 5 years ago
parent
commit
8e999b5cc2
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      .github/workflows/detox.yml

+ 6
- 6
.github/workflows/detox.yml View File

6
     name: 'Running tests'
6
     name: 'Running tests'
7
     runs-on: 'macOS-latest'
7
     runs-on: 'macOS-latest'
8
     steps:
8
     steps:
9
-      - uses: actions/checkout@master
10
-      - uses: actions/setup-node@master
11
-        with:
12
-          node-version: 12.6
13
-      - name: Setup - Install Homebrew
14
-        run: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
15
       - name: Setup - Install Android Emulator
9
       - name: Setup - Install Android Emulator
16
         run: |
10
         run: |
17
           # touch ~/.android/repositories.cfg
11
           # touch ~/.android/repositories.cfg
25
         run: emulator -list-avds
19
         run: emulator -list-avds
26
       - name: List iOS Simulators
20
       - name: List iOS Simulators
27
         run: xcrun simctl list
21
         run: xcrun simctl list
22
+      - uses: actions/checkout@master
23
+      - uses: actions/setup-node@master
24
+        with:
25
+          node-version: 12.6
26
+      - name: Setup - Install Homebrew
27
+        run: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
28
       - name: Setup - Install Yarn
28
       - name: Setup - Install Yarn
29
         run: brew install yarn --ignore-dependencies
29
         run: brew install yarn --ignore-dependencies
30
       - name: Setup - Install NPM Dependencies
30
       - name: Setup - Install NPM Dependencies