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

github.com/twbs/bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-05-05 09:42:33 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-05-05 09:46:04 +0300
commit1a27efa59f806d6403aab9467565d5d5a0a020bd (patch)
tree69107b6361b750f2daa6b3aaa5c533fcff056da8
parentbc415dd4d5a4cd7c40b2c59453e6fca56cd2ecf7 (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