Skip to content

Restructured the repository into a monorepo. #64

Restructured the repository into a monorepo.

Restructured the repository into a monorepo. #64

Workflow file for this run

name: Code analysis & unit tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
# Runs all steps on the VM
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x, 20.x, 22.x]
steps:
- name: Checkout Code Repository
uses: actions/checkout@v2
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- run: pnpm biome check . && pnpm test && pnpm build