Skip to content

Commit 45dadc4

Browse files
authored
Merge pull request #158 from msgpack/codeql
Introduce CodeQL analysis
2 parents e218974 + 130858c commit 45dadc4

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
schedule:
8+
- cron: '44 6 * * 6'
9+
10+
jobs:
11+
analyze:
12+
name: Analyze
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v2
18+
19+
- name: Initialize CodeQL
20+
uses: github/codeql-action/init@v1
21+
with:
22+
languages: typescript
23+
24+
- name: Perform CodeQL Analysis
25+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)