1234567891011121314151617181920212223242526272829303132333435363738 |
- name: "Analyze Code with CodeQL"
- on:
- push:
- branches: [main]
- pull_request:
- branches: [main, develop]
- jobs:
- analyze:
- name: Analyze Code
- runs-on: ubuntu-latest
- permissions:
- actions: read
- contents: read
- security-events: write
- strategy:
- matrix:
- language: ["javascript-typescript"]
- # CodeQL supports "c-cpp", "csharp", "go", "java-kotlin", "javascript-typescript", "python", "ruby", "swift"
- # Learn more:
- # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v3
- with:
- languages: ${{ matrix.language }}
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v3
|