Skip to content

doc: add links to mantine #86

doc: add links to mantine

doc: add links to mantine #86

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
cache-dependency-path: './pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm lint
- name: Build
run: pnpm build
- name: Test
run: pnpm test