Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootlint-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-05-05 10:05:46 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-05-05 10:05:46 +0300
commit80ee9ad831f63e2271dc5e503b82b70dc01c2307 (patch)
tree4fc04b4a39d693c3a31bdb19f733c5ceb3c4339c
parent9d80318fa9c7d53546565be61716137dee23290f (diff)
Add CodeQL action.
-rw-r--r--.github/workflows/codeql.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
new file mode 100644
index 0000000..00bea3f
--- /dev/null
+++ b/.github/workflows/codeql.yml
@@ -0,0 +1,25 @@
+name: "Code Scanning - Action"
+
+on:
+ push:
+
+jobs:
+ CodeQL-Build:
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v1
+ with:
+ languages: javascript
+
+ - name: Autobuild
+ uses: github/codeql-action/autobuild@v1
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v1