chore: version packages #37
Workflow file for this run
This file contains hidden or 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: Changeset Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - react/** | |
| - web/** | |
| jobs: | |
| check: | |
| name: Require Changeset | |
| runs-on: ubuntu-latest | |
| # The auto-generated Version PR (changeset-release/main) consumes the changesets to | |
| # produce the version bump, so it legitimately has none — don't require one of it. | |
| if: github.head_ref != 'changeset-release/main' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check for changeset | |
| run: npx changeset status --since=origin/main |