forked from webpwnized/mutillidae
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (43 loc) · 1.24 KB
/
scan-with-codeql.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: JavaScript CodeQL Analysis
on:
pull_request:
branches:
- development
- main
jobs:
analyze:
name: Analyze JavaScript code with CodeQL
runs-on: ubuntu-latest
needs: init
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
if: github.event.pull_request.head.sha == github.event.pull_request.base.sha
- name: Initialize CodeQL
id: initialize-codeql
uses: github/codeql-action/init@v3
with:
languages: javascript
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
if: github.event.pull_request.head.sha == github.event.pull_request.base.sha
with:
category: "JavaScript CodeQL Analysis"
init:
name: Initialize CodeQL environment
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Initialize CodeQL
id: initialize-codeql
uses: github/codeql-action/init@v3
with:
languages: javascript
outputs:
needs: initialize-codeql
codeql-version: ${{ steps.initialize-codeql.outputs.codeql-version }}