Fix peer dep mismatch #188
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changesets | |
on: | |
pull_request: | |
branches: [next] | |
paths: | |
- 'packages/**' | |
- 'sites/example-project/**' | |
jobs: | |
check-changeset: | |
name: Status | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false && !(github.event.pull_request.head.ref == 'main') | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- uses: pnpm/[email protected] | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm changeset status --since=origin/next | |
id: changeset-status |