Skip to content

Commit

Permalink
Add CodeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed May 5, 2023
1 parent 5004986 commit 6e053e0
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/code-scanning.yml
@@ -0,0 +1,43 @@
name: 'Code Scanning'

on:
push:
branches:
- master
- '!dependabot/**'
pull_request:
branches:
- master
- '!dependabot/**'
schedule:
- cron: '0 7 * * 1'
workflow_dispatch:

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: 'javascript'
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: '/language:javascript'

0 comments on commit 6e053e0

Please sign in to comment.