Skip to content

Commit

Permalink
ci: add codeql code scanning workflow (#86)
Browse files Browse the repository at this point in the history
Co-authored-by: LGTM Migrator <lgtm-migrator@users.noreply.github.com>
  • Loading branch information
lgtm-com[bot] and lgtm-migrator committed Nov 10, 2022
1 parent f54587d commit 5f8b4e7
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "CodeQL"

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "2 2 * * 0"

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

strategy:
fail-fast: false
matrix:
language: [ javascript ]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
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:${{ matrix.language }}"

1 comment on commit 5f8b4e7

@vercel
Copy link

@vercel vercel bot commented on 5f8b4e7 Nov 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.