Skip to content

Initial microscope viewer app #1

Initial microscope viewer app

Initial microscope viewer app #1

Workflow file for this run

name: Check
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: npm ci
- run: python -m venv .venv
- run: .venv/bin/pip install -r requirements.txt
- run: npm test