mirror of
https://github.com/status-im/actions-gh-pages.git
synced 2025-02-18 16:06:44 +00:00
ci: add Code Scanning workflow (#381)
This commit is contained in:
parent
4dfc201b55
commit
c6333d41f0
29
.github/workflows/codeql.yml
vendored
Normal file
29
.github/workflows/codeql.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
name: "Code Scanning"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
CodeQL-Build:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 2
|
||||
|
||||
- run: git checkout HEAD^2
|
||||
if: ${{ github.event_name == 'pull_request' }}
|
||||
|
||||
- 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
|
Loading…
x
Reference in New Issue
Block a user