From 8f8f9c25aa6c1327db9617ce6174e9ca3426a05b Mon Sep 17 00:00:00 2001 From: javascript-benchmark <108757637+javascript-benchmark@users.noreply.github.com> Date: Tue, 6 Aug 2024 00:11:16 +0100 Subject: [PATCH] Add CodeQL workflow --- .github/workflows/codeql-analysis.yml | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..e1bfc2e --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,41 @@ +name: "CodeQL" + +on: + push: + branches: [main] + pull_request: + branches: [main] + schedule: + - cron: '0 0 * * 1' + workflow_dispatch: + inputs: + languages: + description: 'Languages to analyze' + required: true + default: 'javascript' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + contents: write + security-events: write + actions: write + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: "javascript" + + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:javascript"