Skip to content

Commit 99c2930

Browse files
committed
remove test for .h .m files
1 parent bf7c536 commit 99c2930

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/codeql-config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
paths:
22
- src
33
- android/src/main/java
4-
- ios/RCTOneSignal/**/*.m
5-
- ios/RCTOneSignal/**/*.h
64
- .github/actions
75

86
paths-ignore:

.github/workflows/codeql.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ jobs:
3737
build-mode: none
3838
- language: java
3939
build-mode: none
40-
- language: c-cpp
41-
build-mode: none
40+
# Not analyzing .m (Objective-C) & .h (Objective-C header) files for now unless CodeQL supports it in the future
4241

4342
steps:
4443
- name: Checkout repository
@@ -49,10 +48,15 @@ jobs:
4948
uses: github/codeql-action/init@v4
5049

5150
with:
51+
dependency-caching: true
5252
languages: ${{ matrix.language }}
5353
build-mode: ${{ matrix.build-mode }}
5454
config-file: ./.github/codeql-config.yml
5555

56+
- name: Autobuild
57+
if: matrix.build-mode == 'autobuild'
58+
uses: github/codeql-action/autobuild@v4
59+
5660
- name: Perform CodeQL Analysis
5761
uses: github/codeql-action/analyze@v4
5862
with:

0 commit comments

Comments
 (0)