From: XhmikosR Date: Wed, 29 Apr 2020 14:13:32 +0000 (+0300) Subject: Backport the CodeQL Action addition X-Git-Tag: v4.5.0~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=971738b4b581a84617429ee6c858043174dc12ab;p=thirdparty%2Fbootstrap.git Backport the CodeQL Action addition --- diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000000..8cc48e587d --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,28 @@ +name: "Code Scanning - Action" + +on: + push: + pull_request: + schedule: + - cron: "0 0 * * 0" + +jobs: + CodeQL-Build: + runs-on: ubuntu-latest + strategy: + fail-fast: false + + 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