Skip to content

Commit

Permalink
Add CodeQL workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
javascript-benchmark committed Aug 5, 2024
1 parent 5a22567 commit 8f8f9c2
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/codeql-analysis.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: '0 0 * * 1'
workflow_dispatch:
inputs:
languages:
description: 'Languages to analyze'
required: true
default: 'javascript'

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

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: "javascript"

- 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 8f8f9c2

Please sign in to comment.