Skip to content

Migrate Monorepo to PNPM and Changesets #4046

Migrate Monorepo to PNPM and Changesets

Migrate Monorepo to PNPM and Changesets #4046

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- lts
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Enable pnpm
run: corepack enable && corepack prepare pnpm@latest --activate
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
- name: Run Tests & Lint
run: pnpm test