Skip to content

chore(deps-dev): bump eslint from 8.57.0 to 9.4.0 in /frontend #1002

chore(deps-dev): bump eslint from 8.57.0 to 9.4.0 in /frontend

chore(deps-dev): bump eslint from 8.57.0 to 9.4.0 in /frontend #1002

Workflow file for this run

name: Static Application Security Tests
on:
pull_request:
branches: [main]
defaults:
run:
working-directory: ./frontend
jobs:
lint:
name: Lint Check
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout 🔔
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: 'frontend/.nvmrc'
- name: Install
run: npm install
env:
CI: true
- name: Linting
run: npm run lint
codeql-check:
name: Code QL Analysis
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
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3