Skip to content

codeql-analysis

codeql-analysis #605

name: codeql-analysis
on:
schedule:
- cron: "15 12 * * 3"
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ["javascript"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# Autobuild attempts to build compiled languages (C/C++, C#, or Java).
# If this step fails, remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# If Autobuild fails above, remove it and uncomment the following 3 lines
# and modify them (or add more) to build your code if your project uses
# a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3