Skip to content

Commit a59654f

Browse files
authored
Merge pull request #76 from PMDevSolutions/13-add-codeql-security-scanning-workflow
feat: add CodeQL security scanning workflow
2 parents 4329396 + 1b36254 commit a59654f

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/codeql.yml

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

0 commit comments

Comments
 (0)