Skip to content

Commit

Permalink
👷 feat: Add CodeQL workflow for security and quality analysis
Browse files Browse the repository at this point in the history
Signed-off-by: drptbl <[email protected]>
  • Loading branch information
drptbl committed Feb 4, 2024
1 parent 948075c commit 4294a2f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CodeQL

on:
push:
branches:
- new-dawn
pull_request:
schedule:
- cron: '0 6 * * 3'

jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # [email protected]

- name: Initialize CodeQL
uses: github/codeql-action/init@65c74964a9ed8c44ed9f19d4bbc5757a6a8e9ab9 # [email protected]
with:
queries: security-and-quality
languages: javascript-typescript

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@65c74964a9ed8c44ed9f19d4bbc5757a6a8e9ab9 # [email protected]
with:
category: "/language:javascript-typescript"

0 comments on commit 4294a2f

Please sign in to comment.