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 738b70d commit 660b925Copy full SHA for 660b925
.github/codeql/config.yml
.github/workflows/codeql-analysis.yml
@@ -9,9 +9,18 @@ on:
9
- cron: '0 12 * * 1'
10
11
jobs:
12
- CodeQL-Build:
13
-
+ analyze:
+ name: Analyze
14
runs-on: ubuntu-latest
15
+ permissions:
16
+ actions: read
17
+ contents: read
18
+ security-events: write
19
+
20
+ strategy:
21
+ fail-fast: false
22
+ matrix:
23
+ language: [ 'javascript' ]
24
25
steps:
26
- name: Checkout repository
@@ -20,8 +29,7 @@ jobs:
29
- name: Initialize CodeQL
30
uses: github/codeql-action/init@v1
31
with:
- languages: javascript
- config-file: ./.github/codeql/config.yml
32
+ languages: ${{ matrix.language }}
33
34
- name: Perform CodeQL Analysis
27
35
uses: github/codeql-action/analyze@v1
0 commit comments