2021-08-30 22:44:25 +00:00
|
|
|
|
|
|
|
name: "CodeQL"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
2021-10-28 19:57:48 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
paths-ignore:
|
|
|
|
- '**/*Spec.js'
|
|
|
|
- '**/*.md'
|
|
|
|
- '**/*.txt'
|
2021-10-29 16:22:02 +00:00
|
|
|
- '**/*.yml'
|
|
|
|
- '**/*.yaml'
|
2021-11-30 00:34:47 +00:00
|
|
|
- '**/*.spec.js'
|
|
|
|
- '**/*.config.js'
|
2021-08-30 22:44:25 +00:00
|
|
|
schedule:
|
|
|
|
- cron: '28 21 * * 3'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: read
|
|
|
|
security-events: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-03-02 17:59:13 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-08-30 22:44:25 +00:00
|
|
|
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
- name: Initialize CodeQL
|
2022-05-03 15:31:51 +00:00
|
|
|
uses: github/codeql-action/init@v2
|
2021-08-30 22:44:25 +00:00
|
|
|
with:
|
|
|
|
languages: javascript
|
|
|
|
|
|
|
|
- name: Autobuild
|
2022-05-03 15:31:51 +00:00
|
|
|
uses: github/codeql-action/autobuild@v2
|
2021-08-30 22:44:25 +00:00
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2022-05-03 15:31:51 +00:00
|
|
|
uses: github/codeql-action/analyze@v2
|