Skip to content

chore(changesets): 🦋📦 publish packages (main) (next) #4926

chore(changesets): 🦋📦 publish packages (main) (next)

chore(changesets): 🦋📦 publish packages (main) (next) #4926

Workflow file for this run

###
#
# Runs all tests in packages changed since main
#
###
name: Unit tests
on:
pull_request:
paths:
- 'packages/**'
jobs:
unit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: ./.github/actions/setup-pnpm
# Install packages changed since main, as well as their dependants and dependencies
- name: Install dependencies
run: pnpm --filter "...[origin/main]" install
- name: Run unit tests
run: pnpm --filter "...[origin/main]" unit