Moved stocked into monorepo #252
Workflow file for this run
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: Changeset existence | |
on: | |
pull_request: | |
branches: [main] | |
types: [labeled, opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
changeset: | |
name: Check for changeset existence | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'chore') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm 9.12.3 | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.12.3 | |
- name: Install dependencies (with cache) | |
uses: covbot/pnpm-install-with-cache@v1 | |
- name: Run changeset status | |
run: pnpm changeset status --since=origin/main |