Skip to content

feat(ViSR): Tomography slice viewer #447

feat(ViSR): Tomography slice viewer

feat(ViSR): Tomography slice viewer #447

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 10
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Build, lint, test
run: pnpm turbo build lint test --no-daemon