Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit f1bfd2c

Browse files
authored
Merge pull request #78 from jhutchings1/codeql
Add CodeQL Analysis workflow
2 parents 2e72c46 + 0b80ecb commit f1bfd2c

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: "Code Scanning - Action"
2+
3+
on:
4+
push:
5+
schedule:
6+
- cron: '0 0 * * 0'
7+
8+
jobs:
9+
CodeQL-Build:
10+
11+
strategy:
12+
fail-fast: false
13+
14+
15+
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v2
21+
22+
# Initializes the CodeQL tools for scanning.
23+
- name: Initialize CodeQL
24+
uses: github/codeql-action/init@v1
25+
# Override language selection by uncommenting this and choosing your languages
26+
with:
27+
languages: javascript, cpp
28+
29+
- run: |
30+
npm install
31+
npm run standard
32+
33+
- name: Perform CodeQL Analysis
34+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)