Skip to content

work packages rework #166

work packages rework

work packages rework #166

Workflow file for this run

name: Build and Test
on:
push:
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Node setup
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: pnpm/action-setup@v4
- name: Install deps
run: pnpm install
- name: Build
run: pnpm build
- name: Run Client tests
run: pnpm test