2020-04-29 08:52:21 +02:00
|
|
|
name: "Code Scanning - Action"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
schedule:
|
2020-04-29 15:57:10 +02:00
|
|
|
- cron: "0 0 * * 0"
|
2020-04-29 08:52:21 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
CodeQL-Build:
|
2020-04-29 15:57:10 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-04-29 08:52:21 +02:00
|
|
|
|
|
|
|
steps:
|
2020-04-29 15:57:10 +02:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
2020-04-29 08:52:21 +02:00
|
|
|
|
2020-04-29 15:57:10 +02:00
|
|
|
- name: Initialize CodeQL
|
|
|
|
uses: github/codeql-action/init@v1
|
|
|
|
with:
|
|
|
|
languages: javascript
|
2020-04-29 08:52:21 +02:00
|
|
|
|
2020-04-29 15:57:10 +02:00
|
|
|
- name: Autobuild
|
|
|
|
uses: github/codeql-action/autobuild@v1
|
2020-04-29 08:52:21 +02:00
|
|
|
|
2020-04-29 15:57:10 +02:00
|
|
|
- name: Perform CodeQL Analysis
|
|
|
|
uses: github/codeql-action/analyze@v1
|