We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c97e548 commit c9ecc0cCopy full SHA for c9ecc0c
.github/workflows/codeql-analysis.yml
@@ -0,0 +1,29 @@
1
+name: CodeQL
2
+
3
+on:
4
+ pull_request:
5
+ paths-ignore:
6
+ - '**.md'
7
+ - assets/**
8
+ schedule:
9
+ - cron: '0 0 * * *' # everyday @ 0000 UTC
10
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref_name }}
13
+ cancel-in-progress: true
14
15
+jobs:
16
+ analyze:
17
+ name: Analyze
18
+ runs-on: ubuntu-latest
19
+ permissions:
20
+ actions: read
21
+ contents: read
22
+ security-events: write
23
+ steps:
24
+ - uses: actions/checkout@v3
25
+ - uses: github/codeql-action/init@v2
26
+ with:
27
+ languages: javascript
28
+ - uses: github/codeql-action/autobuild@v2
29
+ - uses: github/codeql-action/analyze@v2
0 commit comments