Skip to content

Commit 9784321

Browse files
authored
ci: update codeql config (#6488)
1 parent ee1ef41 commit 9784321

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/codeql.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
actions: read
3232
contents: read
3333
security-events: write
34+
strategy:
35+
fail-fast: false
36+
matrix:
37+
language: [javascript, actions]
3438

3539
steps:
3640
- name: Checkout repository
@@ -40,7 +44,10 @@ jobs:
4044
- name: Initialize CodeQL
4145
uses: github/codeql-action/init@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
4246
with:
43-
languages: javascript
47+
languages: ${{ matrix.language }}
48+
config: |
49+
paths-ignore:
50+
- test
4451
# If you wish to specify custom queries, you can do so here or in a config file.
4552
# By default, queries listed here will override any specified in a config file.
4653
# Prefix the list here with "+" to use these queries and those in the config file.
@@ -62,5 +69,3 @@ jobs:
6269

6370
- name: Perform CodeQL Analysis
6471
uses: github/codeql-action/analyze@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
65-
with:
66-
category: "/language:javascript"

0 commit comments

Comments
 (0)