Skip to content

fix: track dashboard session module (was gitignored by lib/ rule) #5

fix: track dashboard session module (was gitignored by lib/ rule)

fix: track dashboard session module (was gitignored by lib/ rule) #5

Workflow file for this run

name: Dashboard
on:
pull_request:
paths:
- "dashboard/**"
- ".github/workflows/dashboard.yml"
push:
branches:
- main
paths:
- "dashboard/**"
- ".github/workflows/dashboard.yml"
concurrency:
group: dashboard-${{ github.ref }}
cancel-in-progress: true
jobs:
typecheck-and-build:
name: Dashboard Typecheck & Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: dashboard
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: dashboard/package-lock.json
- run: npm ci
- run: npm audit --audit-level=high
- run: npx tsc -b --noEmit
- run: npx vite build