Skip to content

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /frontend #96

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /frontend

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /frontend #96

---
name: Frontend Static Analysis
on:
push:
branches:
- main
paths:
- 'frontend/**'
- '.github/workflows/frontend-static.yml'
pull_request:
branches:
- main
paths:
- 'frontend/**'
- '.github/workflows/frontend-static.yml'
workflow_dispatch: {}
permissions:
contents: read
jobs:
lint:
name: Frontend ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: cd frontend && npm ci
- name: Run ESLint
run: cd frontend && npm run lint
typecheck:
name: Frontend TypeScript type checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: cd frontend && npm ci
- name: Run TypeScript type checking
run: cd frontend && npm run type-check