We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10cabe8 commit 88b8a4cCopy full SHA for 88b8a4c
1 file changed
.github/workflows/ci.yml
@@ -7,6 +7,28 @@ on:
7
pull_request:
8
9
jobs:
10
+ changeset:
11
+ name: Changeset present
12
+ runs-on: ubuntu-latest
13
+ if: github.event_name == 'pull_request'
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 0
18
+
19
+ - uses: pnpm/action-setup@v4
20
21
+ - uses: actions/setup-node@v4
22
23
+ node-version: 24
24
+ cache: pnpm
25
26
+ - name: Install dependencies
27
+ run: pnpm install --frozen-lockfile
28
29
+ - name: Check for changeset
30
+ run: pnpm changeset status --since=origin/main
31
32
ci:
33
name: Check, build & test
34
runs-on: ubuntu-latest
0 commit comments