Skip to content

Label Components

Label Components #9443

Workflow file for this run

name: 'CodeQL'
on:
push:
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
- '**/*.txt'
schedule:
- cron: '30 5 * * 0' # 5:30h on Sundays
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language:
- 'javascript'
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # 7.0.1
- name: Initialize CodeQL
uses: github/codeql-action/init@5595ccaf912efad79be6eef63a5619ff05969be3 # 4.27.5
with:
languages: ${{ matrix.language }}
# build between init and analyze ...
- name: Install node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # 7.0.0
with:
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@5595ccaf912efad79be6eef63a5619ff05969be3 # 4.27.5