Skip to content

Commit 88c5ea1

Browse files
committed
chore: reconfigure codeql checks
1 parent 38983e0 commit 88c5ea1

3 files changed

Lines changed: 33 additions & 5 deletions

File tree

.github/codeql/codeql-config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
paths:
2+
- src
3+
- scripts
4+
- tests

.github/workflows/codeql.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CodeQL
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
schedule:
9+
- cron: '0 8 * * 0'
10+
workflow_dispatch:
11+
12+
concurrency:
13+
group: codeql-${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
analyze:
18+
name: Analyze
19+
runs-on: ubuntu-latest
20+
permissions:
21+
security-events: write
22+
steps:
23+
- uses: actions/checkout@v4
24+
- uses: github/codeql-action/init@v4
25+
with:
26+
languages: javascript-typescript
27+
config-file: .github/codeql/codeql-config.yml
28+
- uses: github/codeql-action/analyze@v4

.github/workflows/codesee-arch-diagram.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
# This workflow was added by CodeSee. Learn more at https://codesee.io/
22
# This is v2.0 of this workflow file
33
on:
4-
push:
5-
branches:
6-
- master
7-
pull_request_target:
8-
types: [opened, synchronize, reopened]
4+
workflow_dispatch:
95

106
name: CodeSee
117

0 commit comments

Comments
 (0)