From ce83879ac3a3f2dc957678823db5e96b6be25858 Mon Sep 17 00:00:00 2001 From: Kamil Sobol Date: Fri, 24 Feb 2023 09:53:00 -0800 Subject: [PATCH] chore: split test config for codeql (#12105) * chore: split test config for codeql * chore: violate codeql * chore: categories * chore: use better name here * chore: undo this * chore: undo that violation * chore: do other violation * chore: revert "chore: do other violation" This reverts commit a5722e1e7e87ffe189eb9ff323311499e89b6a58. --- .github/codeql/codeql-config-tests.yml | 7 +++++ .github/workflows/codeql-tests.yaml | 37 ++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .github/codeql/codeql-config-tests.yml create mode 100644 .github/workflows/codeql-tests.yaml diff --git a/.github/codeql/codeql-config-tests.yml b/.github/codeql/codeql-config-tests.yml new file mode 100644 index 00000000000..a7905f61198 --- /dev/null +++ b/.github/codeql/codeql-config-tests.yml @@ -0,0 +1,7 @@ +paths: + - packages/**/__tests__/** + - packages/**/*.test.* + - packages/**/__e2e__/** +query-filters: + - exclude: + id: js/insecure-temporary-file diff --git a/.github/workflows/codeql-tests.yaml b/.github/workflows/codeql-tests.yaml new file mode 100644 index 00000000000..2ad62442d0c --- /dev/null +++ b/.github/workflows/codeql-tests.yaml @@ -0,0 +1,37 @@ +# Ref: https://tinyurl.com/5d6rr8s7 +name: 'CodeQL Tests' + +on: + push: + pull_request: + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: ['javascript'] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + # Minimal depth 2 so we can checkout the commit before possible merge commit. + fetch-depth: 2 + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + queries: +security-and-quality + config-file: ./.github/codeql/codeql-config-tests.yml + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: '/language:${{matrix.language}}/test'