-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 879 Bytes
/
Copy pathcodeql.yaml
File metadata and controls
46 lines (39 loc) · 879 Bytes
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
name: codeql
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
permissions:
security-events: write
packages: read
actions: read
contents: read
jobs:
analyze:
name: analyze ${{ matrix.language }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- language: javascript-typescript
build-mode: none
steps:
- name: git checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: codeql init
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: codeql analyze
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"