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