Skip to content

Commit

Permalink
Add CodeQL workflow for GitHub code scanning (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: LGTM Migrator <lgtm-migrator@users.noreply.github.com>
  • Loading branch information
lgtm-com[bot] and lgtm-migrator authored Nov 11, 2022
1 parent db148dd commit 4e39073
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "CodeQL"

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "43 2 * * 1"

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ javascript ]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"

2 comments on commit 4e39073

@vercel
Copy link

@vercel vercel bot commented on 4e39073 Nov 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue3-hot-key-demo – ./demo

vue3-hot-key-demo.vercel.app
vue3-hot-key-demo-talljack.vercel.app
vue3-hot-key-demo-git-main-talljack.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 4e39073 Nov 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue3-hot-key – ./

vue3-hot-key-git-main-talljack.vercel.app
vue3-hot-key-talljack.vercel.app
vue3-hot-key.vercel.app

Please sign in to comment.