Skip to content

Commit 1023a90

Browse files
committed
Add CodeQL analysis
1 parent 4fd9373 commit 1023a90

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: 'CodeQL'
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
# The branches below must be a subset of the branches above
8+
branches: [main]
9+
schedule:
10+
- cron: '06 2 * * 5'
11+
12+
jobs:
13+
analyze:
14+
name: Analyze
15+
runs-on: ubuntu-latest
16+
permissions:
17+
security-events: write
18+
steps:
19+
- uses: actions/checkout@v3
20+
- uses: github/codeql-action/init@v1
21+
with:
22+
languages: javascript
23+
- uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)