We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c0c9d commit 09c5825Copy full SHA for 09c5825
.github/workflows/codeql.yml
@@ -19,6 +19,12 @@ env:
19
jobs:
20
# Identify the CodeQL tool versions to use in the analysis job.
21
check-codeql-versions:
22
+ strategy:
23
+ fail-fast: false
24
+ matrix:
25
+ include:
26
+ language: javascript, actions
27
+
28
runs-on: ubuntu-latest
29
outputs:
30
versions: ${{ steps.compare.outputs.versions }}
@@ -32,7 +38,7 @@ jobs:
32
38
id: init-default
33
39
uses: ./init
34
40
with:
35
- languages: javascript
41
+ languages: ${{ matrix.language }}
36
42
- name: Remove empty database
37
43
# allows us to run init a second time
44
run: |
0 commit comments