2024-01-26 19:07:41 +00:00
|
|
|
name: CodeQL Analysis
|
2020-05-06 16:58:36 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-01-26 19:01:49 +00:00
|
|
|
branches:
|
2021-06-01 14:11:52 +00:00
|
|
|
- main
|
2021-01-15 11:22:00 +00:00
|
|
|
pull_request:
|
2020-05-06 16:58:36 +00:00
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 0'
|
|
|
|
|
|
|
|
jobs:
|
2024-01-26 19:01:49 +00:00
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
2020-05-06 16:58:36 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
steps:
|
2024-01-26 19:01:49 +00:00
|
|
|
- name: Checkout
|
|
|
|
id: checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
- name: Initialize CodeQL
|
|
|
|
id: init
|
|
|
|
uses: github/codeql-action/init@v2
|
|
|
|
with:
|
|
|
|
languages: javascript
|
|
|
|
|
|
|
|
- name: Autobuild
|
|
|
|
id: autobuild
|
|
|
|
uses: github/codeql-action/autobuild@v2
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
|
|
|
id: analyze
|
|
|
|
uses: github/codeql-action/analyze@v2
|