Skip to content

chore(deps-dev): bump typescript from 5.8.3 to 6.0.2 in /frontend #177

chore(deps-dev): bump typescript from 5.8.3 to 6.0.2 in /frontend

chore(deps-dev): bump typescript from 5.8.3 to 6.0.2 in /frontend #177

Workflow file for this run

name: Static Analysis Frontend
on:
pull_request:
branches:
- "main"
- "master"
types: [opened, synchronize, reopened]
paths:
- 'frontend/**'
jobs:
lint:
name: Run ESLint and Prettier
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Check Prettier formatting
run: npm run format:check