Skip to content

Commit 961f164

Browse files
Incorporating comments from lposen
1 parent 1d9c1f5 commit 961f164

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/codeql.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
branches: [ "master" ]
1919

2020
jobs:
21-
analyze:
21+
Analyze_Ruby_JSandTS:
2222
name: Analyze (${{ matrix.language }})
2323
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
2424
permissions:
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
category: "/language:${{matrix.language}}"
8181

82-
analyze2:
82+
Build_Analyze_Android_Example:
8383
name: Analyze (${{ matrix.language }})
8484
runs-on: ubuntu-latest
8585
env:
@@ -143,9 +143,10 @@ jobs:
143143
- if: matrix.build-mode == 'manual'
144144
shell: bash
145145
run: |
146+
cd example
146147
yarn install
147-
cd example/android
148-
./gradlew clean
148+
cd android
149+
./gradlew build
149150
150151
- name: Perform CodeQL Analysis
151152
uses: github/codeql-action/analyze@v3
@@ -154,7 +155,7 @@ jobs:
154155

155156

156157

157-
analyze3:
158+
Build_Analyze_iOS_Example:
158159
name: Analyze (${{ matrix.language }})
159160
timeout-minutes: 120
160161
env:
@@ -202,10 +203,10 @@ jobs:
202203
- if: matrix.build-mode == 'manual'
203204
shell: bash
204205
run: |
205-
cd example/ios
206-
bundle install
207-
bundle exec pod install
208-
yarn ios
206+
cd example
207+
yarn install
208+
cd ios
209+
yarn react-native build-ios --mode-Release
209210
210211
continue-on-error: true
211212

0 commit comments

Comments
 (0)