Skip to content
This repository was archived by the owner on Aug 8, 2026. It is now read-only.

Allow viewing SVG figures #156

Allow viewing SVG figures

Allow viewing SVG figures #156

Workflow file for this run

name: Check style
on: pull_request
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20.19.0"
- name: Install frontend dependencies
run: npm ci
working-directory: frontend
- name: Check format
run: make format
- name: Fail if any files were reformatted
run: git diff --exit-code