Skip to content

鈿欙笍 setup: add Biome linter, CodeQL, Dependabot, and consolidate CI workflows #13

鈿欙笍 setup: add Biome linter, CodeQL, Dependabot, and consolidate CI workflows

鈿欙笍 setup: add Biome linter, CodeQL, Dependabot, and consolidate CI workflows #13

Workflow file for this run

name: CodeQL
on:
pull_request:
branches: [main, dev]
push:
branches: [main, dev]
schedule:
# Run every Monday at 6:00 UTC to catch new vulnerabilities
- cron: '0 6 * * 1'
permissions:
contents: read
security-events: write
jobs:
analyze:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ['javascript-typescript']
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: '/language:${{ matrix.language }}'