Skip to content

Commit d5f98a7

Browse files
committedSep 11, 2024

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
 

‎.github/codeql/codeql-config.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
paths:
2+
- 'packages/*/dist/**'
3+
- 'packages/nuxt/bin/**'
4+
- 'packages/schema/schema/**'
5+
paths-ignore:
6+
- 'test/**'
7+
- '**/*.test.js'
8+
- '**/*.test.ts'
9+
- '**/*.test.tsx'
10+
- '**/__tests__/**'

‎.github/workflows/ci.yml

+10
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,16 @@ jobs:
8787
- name: Initialize CodeQL
8888
uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
8989
with:
90+
config: |
91+
paths:
92+
- 'packages/*/dist/**'
93+
- 'packages/nuxt/bin/**'
94+
- 'packages/schema/schema/**'
95+
paths-ignore:
96+
- 'test/**'
97+
- '**/*.spec.ts'
98+
- '**/*.test.ts'
99+
- '**/__snapshots__/**'
90100
languages: javascript
91101
queries: +security-and-quality
92102

0 commit comments

Comments
 (0)
Please sign in to comment.