This repository has been archived by the owner on May 3, 2024. It is now read-only.
chore(deps): update npm development dependencies #587
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: Análisis de CodeQL 🔬 | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- "javascript-typescript" | |
- "python" | |
steps: | |
- name: Clonar ⬇️ | |
uses: actions/checkout@v4.1.1 | |
with: | |
show-progress: false | |
- name: Preparar consultas 🛠️ | |
uses: github/codeql-action/init@v3 | |
with: | |
queries: security-and-quality | |
languages: ${{ matrix.language }} | |
- name: Construir consultas 📦 | |
uses: github/codeql-action/autobuild@v3 | |
- name: Realizar análisis 🧪 | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{ matrix.language }}" |