Skip to content

Commit 4a9b884

Browse files
authored
Merge pull request #434 from ckeditor/ci/3714-codeql
Internal: Create `codeql.yml` as a GitHub Workflow.
2 parents 84c7e78 + c413654 commit 4a9b884

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/codeql.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: "CodeQL"
2+
on:
3+
push:
4+
branches: [ "master" ]
5+
pull_request:
6+
branches: [ "master" ]
7+
schedule:
8+
- cron: '0 22 * * SUN'
9+
10+
jobs:
11+
analyze:
12+
name: Analyze (${{ matrix.language }})
13+
runs-on: 'ubuntu-latest'
14+
timeout-minutes: 360
15+
permissions:
16+
security-events: write
17+
packages: read
18+
actions: read
19+
contents: read
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
include:
24+
- language: javascript-typescript
25+
build-mode: none
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v4
29+
- name: Initialize CodeQL
30+
uses: github/codeql-action/init@v3
31+
with:
32+
languages: ${{ matrix.language }}
33+
build-mode: ${{ matrix.build-mode }}
34+
config: |
35+
paths-ignore:
36+
- '**/*.spec.ts'
37+
- scripts
38+
- name: Perform CodeQL Analysis
39+
uses: github/codeql-action/analyze@v3
40+
with:
41+
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)