Skip to content

Commit c7a46b0

Browse files
Using the path-ignore doesn't work for compiled langauges. isolating run to just swift.
1 parent 560b97f commit c7a46b0

File tree

1 file changed

+20
-23
lines changed

1 file changed

+20
-23
lines changed

.github/workflows/codeql.yml

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -138,25 +138,25 @@ jobs:
138138

139139

140140
analyze3:
141-
# name: Analyze (${{ matrix.language }})
142-
# runs-on: ${{ (matrix.language == 'swift' && 'macos-15') || 'ubuntu-latest' }}
143-
# permissions:
144-
# # required for all workflows
145-
# security-events: write
146-
#
147-
# # required to fetch internal or private CodeQL packs
148-
# packages: read
149-
#
150-
# # only required for workflows in private repositories
151-
# actions: read
152-
# contents: read
153-
#
154-
# strategy:
155-
# fail-fast: false
156-
# matrix:
157-
# include:
158-
# - language: swift
159-
# build-mode: autobuild
141+
name: Analyze (${{ matrix.language }})
142+
runs-on: ${{ (matrix.language == 'swift' && 'macos-15') || 'ubuntu-latest' }}
143+
permissions:
144+
# required for all workflows
145+
security-events: write
146+
147+
# required to fetch internal or private CodeQL packs
148+
packages: read
149+
150+
# only required for workflows in private repositories
151+
actions: read
152+
contents: read
153+
154+
strategy:
155+
fail-fast: false
156+
matrix:
157+
include:
158+
- language: swift
159+
build-mode: autobuild
160160

161161
name: build iOS
162162
timeout-minutes: 60
@@ -208,7 +208,7 @@ jobs:
208208
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
209209
run: |
210210
cd example/ios
211-
pod install
211+
yarn ios
212212
env:
213213
NO_FLIPPER: 1
214214

@@ -223,9 +223,6 @@ jobs:
223223
with:
224224
languages: ${{ matrix.language }}
225225
build-mode: ${{ matrix.build-mode }}
226-
config: |
227-
paths-ignore:
228-
- '**/android/app/main/java/iterable/reactnativesdk/example/**
229226

230227

231228
# If you wish to specify custom queries, you can do so here or in a config file.

0 commit comments

Comments
 (0)