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 be25e25 commit cad84d0Copy full SHA for cad84d0
1 file changed
.github/workflows/codeql-analysis.yml
@@ -0,0 +1,29 @@
1
+name: "CodeQL"
2
+
3
+on:
4
+ - push
5
+ - workflow_dispatch
6
7
+jobs:
8
+ analyze:
9
+ name: Analyze
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ actions: read
13
+ contents: read
14
+ security-events: write
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ language: [ 'javascript', 'ruby' ]
19
+ steps:
20
+ - name: Checkout repository
21
+ uses: actions/checkout@v2
22
+ - name: Initialize CodeQL
23
+ uses: github/codeql-action/init@v1
24
+ with:
25
+ languages: ${{ matrix.language }}
26
+ - name: Autobuild
27
+ uses: github/codeql-action/autobuild@v1
28
+ - name: Perform CodeQL Analysis
29
+ uses: github/codeql-action/analyze@v1
0 commit comments