chore: Add changeset status step to CI workflow (#607)

* chore: Add changeset status step to CI workflow

* f

* f

* f

* Update ci.yml

* Update ci.yml

* Update ci.yml
This commit is contained in:
Felicio Mununga 2025-01-08 14:02:24 +01:00 committed by GitHub
parent 121937bcbe
commit b286ef2a74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"baseBranch": "origin/main",
"updateInternalDependencies": "patch",
"ignore": []
}

View File

@ -22,7 +22,8 @@ jobs:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
# https://github.com/changesets/changesets/issues/1055
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
@ -35,6 +36,10 @@ jobs:
node-version: 20.18.0
cache: 'pnpm'
- name: Changeset
# https://github.com/changesets/changesets/issues/1048
run: pnpm dlx @changesets/cli status --since origin/main
- name: Install dependencies
run: pnpm install --frozen-lockfile