fix(renderers): add build:deps to ensure core builds first #76
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL Analysis" | |
on: | |
push: | |
branches: [ main, 'refactor/**' ] # Run on main and refactor branches | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: # Allow manual trigger from GitHub Actions UI | |
schedule: | |
- cron: '0 0 * * 0' # Weekly | |
jobs: | |
analyze: | |
name: Analyze TypeScript | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
actions: read | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: javascript-typescript | |
queries: security-and-quality | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |