Skip to content

chore: add bug enumeration #43

chore: add bug enumeration

chore: add bug enumeration #43

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- "main"
paths:
- "package.json"
- "pnpm-lock.yaml"
- "**.js"
pull_request:
branches:
- "main"
paths:
- "package.json"
- "pnpm-lock.yaml"
- "**.js"
schedule:
- cron: "0 0 */2 * *"
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
analyzer:
name: "Analyzer"
runs-on: "ubuntu-latest"
permissions:
actions: "read"
contents: "read"
security-events: "write"
strategy:
fail-fast: false
matrix:
languages:
- "javascript"
steps:
- name: "Set up workspace"
if: "${{ github.event_name == 'push' || github.event_name == 'pull_request' }}"
uses: "actions/checkout@v4.1.1"
- name: "Set up workspace"
if: "${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}"
uses: "actions/checkout@v4.1.1"
with:
fetch-depth: 0
- name: "Set up analyzer"
uses: "github/codeql-action/init@v2.22.4"
with:
languages: "${{ matrix.languages }}"
- name: "Run analyzer"
uses: "github/codeql-action/analyze@v2.22.4"