Skip to content

Commit

Permalink
chore: setup codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
bjohansebas committed Jul 6, 2024
1 parent 95876ed commit 928da67
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Code Analysis

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

jobs:
analyze:
name: Verify
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ["javascript"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

0 comments on commit 928da67

Please sign in to comment.