-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: codeql code scanning enable (#42)
- Loading branch information
1 parent
6cef47d
commit b6bd4ba
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: "CodeQL - Minimal incremental analysis" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "master" # Change this to the branch to default branch | ||
- "!ignore/branch" # Ignore CodeQL scan for these branches | ||
- "!test/*" # Ignore CodeQL scan for these branches | ||
pull_request: | ||
branches: | ||
- "master" # Change this to the branch to default branch | ||
paths-ignore: | ||
- '**/*.md' | ||
- '**/*.txt' | ||
# If your project is not actively developed, consider scheduling CodeQL scans | ||
#schedule: | ||
# - cron: '44 22 * * 5' # Run CodeQL scan every Friday at 10:44 PM UTC | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 # Set timeout to 30 minutes; Change if your project takes longer to scan | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'javascript' ] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# queries: security-extended,security-and-quality | ||
# debug: true # Only use this for debugging. It will increase the runtime of the action and take up storage | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
with: | ||
category: "/language:${{matrix.language}}" |