name: ๐Ÿ›ก๏ธ CodeQL Analysis on: push: branches: [master, develop] pull_request: branches: [master, develop] schedule: - cron: '24 2 * * *' jobs: analyze: name: ๐Ÿ”Ž Analyze with CodeQL runs-on: ubuntu-24.04 permissions: contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'javascript-typescript' ] steps: - name: ๐Ÿ“ฅ Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: ref: ${{ github.event.pull_request.head.sha || github.sha }} show-progress: false fetch-depth: 0 - name: ๐Ÿ Initialize CodeQL uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2 with: languages: ${{ matrix.language }} queries: +security-extended,security-and-quality - name: ๐Ÿ› ๏ธ Autobuild uses: github/codeql-action/autobuild@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2 - name: ๐Ÿงช Perform CodeQL Analysis uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2