Skip to content

move to monorepo structure #132

move to monorepo structure

move to monorepo structure #132

Workflow file for this run

name: Test and Build
on:
push:
branches: ['main']
pull_request:
branches: ['main', 'release/alpha', 'release/beta', 'release/next']
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install
- run: pnpm test
- run: pnpm build