Skip to content

chore: update chromatic requirement from ^12.5.4 to ^16.1.0 in /admin-dashboard #161

chore: update chromatic requirement from ^12.5.4 to ^16.1.0 in /admin-dashboard

chore: update chromatic requirement from ^12.5.4 to ^16.1.0 in /admin-dashboard #161

Workflow file for this run

name: "CodeQL Analysis"
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '21 4 * * 5'
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: javascript-typescript
build-mode: none
- language: rust
build-mode: none
- language: go
build-mode: autobuild
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL packets: https://aka.ms/codeql-package-config
# queries: security-extended,security-and-quality
# If the generate-db step fails, you can remove it and the 'build-mode' property
# from the 'init' step above (which will revert to 'autobuild').
# - name: Perform CodeQL Analysis
# uses: github/codeql-action/analyze@v3
# with:
# category: "/language:${{matrix.language}}"
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
if: matrix.build-mode == 'autobuild'
uses: github/codeql-action/autobuild@v3
# manual build step for languages that need it it build-mode is manual
# - name: Build
# if: matrix.build-mode == 'manual'
# run: |
# echo "Run your manual build commands here"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"