Skip to content

build(deps-dev): Bump eslint from 8.44.0 to 8.45.0 #1240

build(deps-dev): Bump eslint from 8.44.0 to 8.45.0

build(deps-dev): Bump eslint from 8.44.0 to 8.45.0 #1240

Workflow file for this run

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@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
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@v3
with:
node-version: 18.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@v2