Skip to content

fix: normalize active dashboard selection to avoid showing widgets from other dashboards #128

fix: normalize active dashboard selection to avoid showing widgets from other dashboards

fix: normalize active dashboard selection to avoid showing widgets from other dashboards #128

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm install
- run: npx eslint --quiet src/
typecheck:
name: Typecheck
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm install
- run: npx tsc --noEmit
test:
name: Test
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm install
- run: npx vitest run