Skip to content

chore(workflow): bump github/codeql-action from 3 to 4 #217

chore(workflow): bump github/codeql-action from 3 to 4

chore(workflow): bump github/codeql-action from 3 to 4 #217

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
---
name: "Code Quality"
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- "packages/**/*.ts"
jobs:
analyze:
name: Analyze Code Quality
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language:
- javascript-typescript
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
config-file: ./codeql.config.yml
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4