Skip to content

Commit

Permalink
chore: split test config for codeql (#12105)
Browse files Browse the repository at this point in the history
* 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 a5722e1.
  • Loading branch information
sobolk authored Feb 24, 2023
1 parent 5eaf59c commit ce83879
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/codeql/codeql-config-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
paths:
- packages/**/__tests__/**
- packages/**/*.test.*
- packages/**/__e2e__/**
query-filters:
- exclude:
id: js/insecure-temporary-file
37 changes: 37 additions & 0 deletions .github/workflows/codeql-tests.yaml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit ce83879

Please sign in to comment.