Skip to content

Commit c2078e9

Browse files
authored
Merge pull request #46 from s-group-dev/codeql
ci: add CodeQL workflow
2 parents 7f5edac + dc4027e commit c2078e9

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CodeQL
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- beta
8+
pull_request:
9+
schedule:
10+
- cron: '0 0 * * 1' # 00:00 on Monday.
11+
12+
permissions:
13+
contents: read
14+
security-events: write
15+
16+
jobs:
17+
CodeQL:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v6
21+
- uses: github/codeql-action/init@v4
22+
with:
23+
languages: javascript-typescript
24+
- uses: github/codeql-action/analyze@v4

0 commit comments

Comments
 (0)