We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f088bf5 commit 96949e5Copy full SHA for 96949e5
.github/workflows/changesets.yml
@@ -0,0 +1,25 @@
1
+name: Changeset Check
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ release:
10
+ name: Changeset Check
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout Repo
14
+ uses: actions/checkout@master
15
16
+ - name: Setup Node.js 12.x
17
+ uses: actions/setup-node@master
18
+ with:
19
+ node-version: 12.x
20
21
+ - name: Install Dependencies
22
+ run: yarn
23
24
+ - name: Check if any Changeset file exists
25
+ run: yarn changeset status
0 commit comments