This repository was archived by the owner on Jun 10, 2024. It is now read-only.
chore(deps): update npm development dependencies #950
This file contains 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: GitHub CodeQL 🔬 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
merge_group: | |
workflow_call: | |
schedule: | |
- cron: "0 0 * * MON,FRI" | |
jobs: | |
analyze: | |
name: Analyze 🔬 | |
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@v4.1.4 | |
with: | |
show-progress: false | |
- name: Initialize CodeQL 🛠️ | |
uses: github/codeql-action/init@v3 | |
with: | |
queries: security-and-quality | |
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}}" |