Skip to content

Commit

Permalink
feat: add changeset validation workflow (#3067)
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Ingersoll <[email protected]>
  • Loading branch information
karooolis and holic authored Aug 27, 2024
1 parent bd4dffc commit da79454
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Changeset

on:
pull_request:

jobs:
changeset:
name: Validate changeset
runs-on: depot-ubuntu-22.04-16
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup
uses: ./.github/actions/setup

- name: Changeset
run: pnpm changeset status --since origin/main

0 comments on commit da79454

Please sign in to comment.