From 5ec3cbec93ecd0413eab1ca443d61c5d3e3dfee8 Mon Sep 17 00:00:00 2001 From: ryndaniels Date: Mon, 10 Jun 2024 12:09:58 +0300 Subject: [PATCH] add codeql workflow --- .github/workflows/codeql.yml | 51 ++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..e09a8b5 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,51 @@ +name: CodeQL + +on: + push: + branches: [master] + paths-ignore: + - '**/*.md' + - '**/*.txt' + - '**/LICENSE.txt' + - '**/CODEOWNERS' + - 'readme.*' + - '.gitignore' + pull_request: + branches: [master] + paths-ignore: + - '**/*.md' + - '**/*.txt' + - '**/LICENSE.txt' + - '**/CODEOWNERS' + - 'readme.*' + - '.gitignore' + +jobs: + codeql: + name: Analyze + runs-on: ubuntu-22.04 + permissions: + security-events: write + actions: read + contents: read + env: + language: javascript + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Node.js 18.x + uses: actions/setup-node@v4 + with: + node-version: 18.x + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ env.language }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: '/language:${{env.language}}'