Skip to content

build(deps-dev): Bump html-validate from 8.23.0 to 8.24.0 (#1251) #2253

build(deps-dev): Bump html-validate from 8.23.0 to 8.24.0 (#1251)

build(deps-dev): Bump html-validate from 8.23.0 to 8.24.0 (#1251) #2253

name: "CodeQL"
on:
push:
branches: [master]
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
schedule:
- cron: "00 11 * * 1"
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@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
# Since Javascript is not compiled, no real need to do a buld, but it doesn't hurt to make sure app actually builds first
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: Build
run: |
npm ci --legacy-peer-deps
npm run build-prod
env:
DISABLE_PROXY: true
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3