Skip to content

Move menu trigger to top-left, shorten long figure names #8

Move menu trigger to top-left, shorten long figure names

Move menu trigger to top-left, shorten long figure names #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
env:
NODE_VERSION: '20'
PNPM_VERSION: '8'
jobs:
check:
name: Tests + Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: client/pnpm-lock.yaml
- name: Install dependencies
working-directory: ./client
run: pnpm install --frozen-lockfile
- name: Setup assets (downloads content from CDN)
working-directory: ./client
run: pnpm setup:assets
- name: Run unit tests
working-directory: ./client
run: pnpm test:unit
- name: Build
working-directory: ./client
run: pnpm build