Skip to content

Fix hotspot coloring for high species hotspots #31

Fix hotspot coloring for high species hotspots

Fix hotspot coloring for high species hotspots #31

Workflow file for this run

name: CI
on:
push:
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build shared package
run: npm run build --workspace=shared --if-present
- name: Lint
run: npm run lint
- name: TypeScript check
run: npm run typecheck