Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,29 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: "10.30.3"

- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "22"
cache: "npm"
cache-dependency-path: dashboard/package-lock.json
cache: "pnpm"
cache-dependency-path: dashboard/pnpm-lock.yaml

- name: Install dependencies
run: cd dashboard && npm ci
run: cd dashboard && pnpm install --frozen-lockfile

- name: Biome lint + format check
run: cd dashboard && npx biome ci src/
run: cd dashboard && pnpm exec biome ci src/

- name: TypeScript check
run: cd dashboard && npx tsc --noEmit
run: cd dashboard && pnpm exec tsc --noEmit

- name: Build check
run: cd dashboard && npx vite build
run: cd dashboard && pnpm exec vite build

rust-test:
runs-on: ubuntu-latest
Expand Down
Loading
Loading