diff options
Diffstat (limited to 'vendor/twbs/bootstrap/.github/workflows/codeql.yml')
-rw-r--r-- | vendor/twbs/bootstrap/.github/workflows/codeql.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/.github/workflows/codeql.yml b/vendor/twbs/bootstrap/.github/workflows/codeql.yml new file mode 100644 index 000000000..777d812d6 --- /dev/null +++ b/vendor/twbs/bootstrap/.github/workflows/codeql.yml @@ -0,0 +1,25 @@ +name: "Code Scanning - Action" + +on: + push: + schedule: + - cron: "0 0 * * 0" + +jobs: + CodeQL-Build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: javascript + + - name: Autobuild + uses: github/codeql-action/autobuild@v1 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 |