Skip to content

Commit 115b411

Browse files
committed
remove test for .h .m files
1 parent bf7c536 commit 115b411

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-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: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,14 @@ jobs:
3333
include:
3434
- language: actions
3535
build-mode: none
36+
dependency-caching: true
3637
- language: javascript-typescript
3738
build-mode: none
39+
dependency-caching: true
3840
- language: java
3941
build-mode: none
40-
- language: c-cpp
41-
build-mode: none
42+
dependency-caching: true
43+
# Not analyzing .m (Objective-C) & .h (Objective-C header) files for now unless CodeQL supports it in the future
4244

4345
steps:
4446
- name: Checkout repository
@@ -49,10 +51,15 @@ jobs:
4951
uses: github/codeql-action/init@v4
5052

5153
with:
54+
dependency-caching: ${{ matrix.dependency-caching }}
5255
languages: ${{ matrix.language }}
5356
build-mode: ${{ matrix.build-mode }}
5457
config-file: ./.github/codeql-config.yml
5558

59+
- name: Autobuild
60+
if: matrix.build-mode == 'autobuild'
61+
uses: github/codeql-action/autobuild@v4
62+
5663
- name: Perform CodeQL Analysis
5764
uses: github/codeql-action/analyze@v4
5865
with:

0 commit comments

Comments
 (0)