Skip to content

chore(dashboard): bump eslint from 9.39.5 to 10.8.0 in /dashboard #15

chore(dashboard): bump eslint from 9.39.5 to 10.8.0 in /dashboard

chore(dashboard): bump eslint from 9.39.5 to 10.8.0 in /dashboard #15

Workflow file for this run

name: Dashboard CI
on:
push:
branches: [main, develop]
paths:
- "dashboard/**"
- ".github/workflows/dashboard-ci.yml"
pull_request:
branches: [main, develop]
paths:
- "dashboard/**"
- ".github/workflows/dashboard-ci.yml"
defaults:
run:
working-directory: dashboard
jobs:
lint-and-build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: dashboard/package-lock.json
- name: Install dependencies
run: npm ci
- name: ESLint
run: npm run lint
- name: TypeScript type check
run: npx tsc --noEmit
- name: Build
run: npm run build