Skip to content

Commit

Permalink
ci: add CodeQL security scanning
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <sora@morimoto.io>
  • Loading branch information
smorimoto committed Jan 16, 2021
1 parent e1716d6 commit f9d0f6b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CodeQL

on:
pull_request:
push:
schedule:
- cron: 0 0 * * 0

jobs:
codeql:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x

- name: Initialize CodeQL
uses: github/codeql-action/init@v1

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

0 comments on commit f9d0f6b

Please sign in to comment.