Skip to content

Commit

Permalink
ci: setting up codeql (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion authored Aug 10, 2020
1 parent 54e4c7c commit 8c275f5
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/codeql/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
paths-ignore:
- '**/node_modules/**'
14 changes: 13 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: monthly
reviewers:
- erunion
labels:
- scope:dependency
commit-message:
prefix: chore(deps)
prefix-development: chore(deps-dev)

- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
interval: monthly
open-pull-requests-limit: 10
reviewers:
- erunion
Expand Down
File renamed without changes.
38 changes: 38 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "Code scanning - action"

on:
push:
pull_request:
schedule:
- cron: '0 12 * * 1'

jobs:
CodeQL-Build:

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: javascript
config-file: ./.github/codeql/config.yml

- name: Install Dependencies
run: npm ci

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

0 comments on commit 8c275f5

Please sign in to comment.